fxruby 1.4.7 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -1096,9 +1096,9 @@ static VALUE _wrap_FXPacker_getHeightForWidth(int argc, VALUE *argv, VALUE self)
1096
1096
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1097
1097
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); arg2 = NUM2INT(argv[0]);
1098
1098
  result = (FXint)FXPacker_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1099
- static VALUE _wrap_FXPacker_canFocus(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; FXbool result;
1099
+ static VALUE _wrap_FXPacker_canFocus(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; bool result;
1100
1100
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1101
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); result = (FXbool)FXPacker_canFocus((FXPacker const *)arg1);
1101
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); result = (bool)FXPacker_canFocus((FXPacker const *)arg1);
1102
1102
  vresult = result ? Qtrue : Qfalse; return vresult; }
1103
1103
  static VALUE _wrap_FXPacker_setFocus(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ;
1104
1104
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1154,23 +1154,36 @@ static VALUE _wrap_FXPacker_show(int argc, VALUE *argv, VALUE self) { FXPacker *
1154
1154
  static VALUE _wrap_FXPacker_hide(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ;
1155
1155
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1156
1156
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); FXPacker_hide(arg1); return Qnil; }
1157
- static VALUE _wrap_FXPacker_isComposite(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; FXbool result;
1157
+ static VALUE _wrap_FXPacker_isComposite(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; bool result;
1158
1158
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1159
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1);
1160
- result = (FXbool)FXPacker_isComposite((FXPacker const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1159
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); result = (bool)FXPacker_isComposite((FXPacker const *)arg1);
1160
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1161
1161
  static VALUE _wrap_FXPacker_contains(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; FXint arg2 ;
1162
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1162
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1163
1163
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1164
1164
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1165
- result = (FXbool)FXPacker_contains((FXPacker const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1166
- static VALUE _wrap_FXPacker_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; FXbool result;
1165
+ result = (bool)FXPacker_contains((FXPacker const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1166
+ static VALUE _wrap_FXPacker_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; bool result;
1167
1167
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1168
1168
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1);
1169
- result = (FXbool)FXPacker_doesSaveUnder((FXPacker const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1169
+ result = (bool)FXPacker_doesSaveUnder((FXPacker const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1170
1170
  static VALUE _wrap_FXPacker_setBackColor(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; FXColor arg2 ;
1171
1171
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1172
1172
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); arg2 = to_FXColor(argv[0]);
1173
1173
  FXPacker_setBackColor(arg1,arg2); return Qnil; }
1174
+ static VALUE _wrap_FXPacker_tr(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ; FXchar *arg2 ;
1175
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1176
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1177
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1178
+ arg3 = StringValuePtr(argv[1]); }
1179
+ result = (FXchar *)FXPacker_tr((FXPacker const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1180
+ vresult = rb_str_new2(result); return vresult; }
1181
+ static VALUE _wrap_FXPacker_dropEnable(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ;
1182
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1183
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); FXPacker_dropEnable(arg1); return Qnil; }
1184
+ static VALUE _wrap_FXPacker_dropDisable(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ;
1185
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1186
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1); FXPacker_dropDisable(arg1); return Qnil; }
1174
1187
  static VALUE _wrap_FXPacker_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXPacker *arg1 = (FXPacker *) 0 ;
1175
1188
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1176
1189
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXPacker, 1);
@@ -1226,6 +1239,15 @@ static VALUE _wrap_new_FXDockSite(int argc, VALUE *argv, VALUE self) { FXComposi
1226
1239
  arg10 = NUM2INT(argv[9]); } if (argc > 10) { arg11 = NUM2INT(argv[10]); } if (argc > 11) { arg12 = NUM2INT(argv[11]); }
1227
1240
  { result = (FXDockSite *)new_FXDockSite(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12);
1228
1241
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1242
+ static VALUE _wrap_FXDockSite_wrapGalleyse___(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1243
+ FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1244
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); arg2 = to_FXbool(argv[0]); (arg1)->wrapGalleys(arg2);
1245
+ return Qnil; }
1246
+ static VALUE _wrap_FXDockSite_wrapGalleysq___(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1247
+ FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1248
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1249
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1);
1250
+ result = (FXbool)((FXDockSite const *)arg1)->wrapGalleys(); vresult = result ? Qtrue : Qfalse; return vresult; }
1229
1251
  static void
1230
1252
  free_FXDockSite(FXDockSite *arg1) {
1231
1253
  delete arg1;
@@ -1273,10 +1295,10 @@ static VALUE _wrap_FXDockSite_getHeightForWidth(int argc, VALUE *argv, VALUE sel
1273
1295
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1274
1296
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); arg2 = NUM2INT(argv[0]);
1275
1297
  result = (FXint)FXDockSite_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1276
- static VALUE _wrap_FXDockSite_canFocus(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ; FXbool result;
1298
+ static VALUE _wrap_FXDockSite_canFocus(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ; bool result;
1277
1299
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1278
1300
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1);
1279
- result = (FXbool)FXDockSite_canFocus((FXDockSite const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1301
+ result = (bool)FXDockSite_canFocus((FXDockSite const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1280
1302
  static VALUE _wrap_FXDockSite_setFocus(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1281
1303
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1282
1304
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); FXDockSite_setFocus(arg1); return Qnil; }
@@ -1332,25 +1354,37 @@ static VALUE _wrap_FXDockSite_hide(int argc, VALUE *argv, VALUE self) { FXDockSi
1332
1354
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1333
1355
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); FXDockSite_hide(arg1); return Qnil; }
1334
1356
  static VALUE _wrap_FXDockSite_isComposite(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1335
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1357
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1336
1358
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1337
1359
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1);
1338
- result = (FXbool)FXDockSite_isComposite((FXDockSite const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1360
+ result = (bool)FXDockSite_isComposite((FXDockSite const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1339
1361
  static VALUE _wrap_FXDockSite_contains(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ; FXint arg2 ;
1340
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1362
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1341
1363
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1342
1364
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1343
- result = (FXbool)FXDockSite_contains((FXDockSite const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1344
- return vresult; }
1365
+ result = (bool)FXDockSite_contains((FXDockSite const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1345
1366
  static VALUE _wrap_FXDockSite_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1346
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1367
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1347
1368
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1348
1369
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1);
1349
- result = (FXbool)FXDockSite_doesSaveUnder((FXDockSite const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1370
+ result = (bool)FXDockSite_doesSaveUnder((FXDockSite const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1350
1371
  static VALUE _wrap_FXDockSite_setBackColor(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1351
1372
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1352
1373
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); arg2 = to_FXColor(argv[0]);
1353
1374
  FXDockSite_setBackColor(arg1,arg2); return Qnil; }
1375
+ static VALUE _wrap_FXDockSite_tr(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ; FXchar *arg2 ;
1376
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1377
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1378
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1379
+ arg3 = StringValuePtr(argv[1]); }
1380
+ result = (FXchar *)FXDockSite_tr((FXDockSite const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1381
+ vresult = rb_str_new2(result); return vresult; }
1382
+ static VALUE _wrap_FXDockSite_dropEnable(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1383
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1384
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); FXDockSite_dropEnable(arg1); return Qnil; }
1385
+ static VALUE _wrap_FXDockSite_dropDisable(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1386
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1387
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1); FXDockSite_dropDisable(arg1); return Qnil; }
1354
1388
  static VALUE _wrap_FXDockSite_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXDockSite *arg1 = (FXDockSite *) 0 ;
1355
1389
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1356
1390
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXDockSite, 1);
@@ -1510,9 +1544,9 @@ static VALUE _wrap_FXSpring_getHeightForWidth(int argc, VALUE *argv, VALUE self)
1510
1544
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1511
1545
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); arg2 = NUM2INT(argv[0]);
1512
1546
  result = (FXint)FXSpring_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1513
- static VALUE _wrap_FXSpring_canFocus(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; FXbool result;
1547
+ static VALUE _wrap_FXSpring_canFocus(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; bool result;
1514
1548
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1515
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); result = (FXbool)FXSpring_canFocus((FXSpring const *)arg1);
1549
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); result = (bool)FXSpring_canFocus((FXSpring const *)arg1);
1516
1550
  vresult = result ? Qtrue : Qfalse; return vresult; }
1517
1551
  static VALUE _wrap_FXSpring_setFocus(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ;
1518
1552
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1568,23 +1602,36 @@ static VALUE _wrap_FXSpring_show(int argc, VALUE *argv, VALUE self) { FXSpring *
1568
1602
  static VALUE _wrap_FXSpring_hide(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ;
1569
1603
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1570
1604
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); FXSpring_hide(arg1); return Qnil; }
1571
- static VALUE _wrap_FXSpring_isComposite(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; FXbool result;
1605
+ static VALUE _wrap_FXSpring_isComposite(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; bool result;
1572
1606
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1573
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1);
1574
- result = (FXbool)FXSpring_isComposite((FXSpring const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1607
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); result = (bool)FXSpring_isComposite((FXSpring const *)arg1);
1608
+ vresult = result ? Qtrue : Qfalse; return vresult; }
1575
1609
  static VALUE _wrap_FXSpring_contains(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; FXint arg2 ;
1576
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1610
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1577
1611
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1578
1612
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1579
- result = (FXbool)FXSpring_contains((FXSpring const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1580
- static VALUE _wrap_FXSpring_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; FXbool result;
1613
+ result = (bool)FXSpring_contains((FXSpring const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
1614
+ static VALUE _wrap_FXSpring_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; bool result;
1581
1615
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1582
1616
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1);
1583
- result = (FXbool)FXSpring_doesSaveUnder((FXSpring const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1617
+ result = (bool)FXSpring_doesSaveUnder((FXSpring const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1584
1618
  static VALUE _wrap_FXSpring_setBackColor(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; FXColor arg2 ;
1585
1619
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1586
1620
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); arg2 = to_FXColor(argv[0]);
1587
1621
  FXSpring_setBackColor(arg1,arg2); return Qnil; }
1622
+ static VALUE _wrap_FXSpring_tr(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ; FXchar *arg2 ;
1623
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1624
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1625
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1626
+ arg3 = StringValuePtr(argv[1]); }
1627
+ result = (FXchar *)FXSpring_tr((FXSpring const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1628
+ vresult = rb_str_new2(result); return vresult; }
1629
+ static VALUE _wrap_FXSpring_dropEnable(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ;
1630
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1631
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); FXSpring_dropEnable(arg1); return Qnil; }
1632
+ static VALUE _wrap_FXSpring_dropDisable(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ;
1633
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1634
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1); FXSpring_dropDisable(arg1); return Qnil; }
1588
1635
  static VALUE _wrap_FXSpring_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXSpring *arg1 = (FXSpring *) 0 ;
1589
1636
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1590
1637
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSpring, 1);
@@ -1691,10 +1738,10 @@ static VALUE _wrap_FXHorizontalFrame_getHeightForWidth(int argc, VALUE *argv, VA
1691
1738
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); arg2 = NUM2INT(argv[0]);
1692
1739
  result = (FXint)FXHorizontalFrame_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1693
1740
  static VALUE _wrap_FXHorizontalFrame_canFocus(int argc, VALUE *argv, VALUE self) {
1694
- FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1741
+ FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1695
1742
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1696
1743
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1);
1697
- result = (FXbool)FXHorizontalFrame_canFocus((FXHorizontalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1744
+ result = (bool)FXHorizontalFrame_canFocus((FXHorizontalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1698
1745
  return vresult; }
1699
1746
  static VALUE _wrap_FXHorizontalFrame_setFocus(int argc, VALUE *argv, VALUE self) {
1700
1747
  FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; if ((argc < 0) || (argc > 0))
@@ -1763,28 +1810,43 @@ static VALUE _wrap_FXHorizontalFrame_hide(int argc, VALUE *argv, VALUE self) {
1763
1810
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1764
1811
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); FXHorizontalFrame_hide(arg1); return Qnil; }
1765
1812
  static VALUE _wrap_FXHorizontalFrame_isComposite(int argc, VALUE *argv, VALUE self) {
1766
- FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1813
+ FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1767
1814
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1768
1815
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1);
1769
- result = (FXbool)FXHorizontalFrame_isComposite((FXHorizontalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1816
+ result = (bool)FXHorizontalFrame_isComposite((FXHorizontalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1770
1817
  return vresult; }
1771
1818
  static VALUE _wrap_FXHorizontalFrame_contains(int argc, VALUE *argv, VALUE self) {
1772
- FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil;
1819
+ FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil;
1773
1820
  if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1774
1821
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1775
- result = (FXbool)FXHorizontalFrame_contains((FXHorizontalFrame const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1822
+ result = (bool)FXHorizontalFrame_contains((FXHorizontalFrame const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1776
1823
  return vresult; }
1777
1824
  static VALUE _wrap_FXHorizontalFrame_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
1778
- FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1825
+ FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1779
1826
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1780
1827
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1);
1781
- result = (FXbool)FXHorizontalFrame_doesSaveUnder((FXHorizontalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1828
+ result = (bool)FXHorizontalFrame_doesSaveUnder((FXHorizontalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1782
1829
  return vresult; }
1783
1830
  static VALUE _wrap_FXHorizontalFrame_setBackColor(int argc, VALUE *argv, VALUE self) {
1784
1831
  FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
1785
1832
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1786
1833
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); arg2 = to_FXColor(argv[0]);
1787
1834
  FXHorizontalFrame_setBackColor(arg1,arg2); return Qnil; }
1835
+ static VALUE _wrap_FXHorizontalFrame_tr(int argc, VALUE *argv, VALUE self) { FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ;
1836
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1837
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1838
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1839
+ arg3 = StringValuePtr(argv[1]); }
1840
+ result = (FXchar *)FXHorizontalFrame_tr((FXHorizontalFrame const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1841
+ vresult = rb_str_new2(result); return vresult; }
1842
+ static VALUE _wrap_FXHorizontalFrame_dropEnable(int argc, VALUE *argv, VALUE self) {
1843
+ FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; if ((argc < 0) || (argc > 0))
1844
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1845
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); FXHorizontalFrame_dropEnable(arg1); return Qnil; }
1846
+ static VALUE _wrap_FXHorizontalFrame_dropDisable(int argc, VALUE *argv, VALUE self) {
1847
+ FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; if ((argc < 0) || (argc > 0))
1848
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1849
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXHorizontalFrame, 1); FXHorizontalFrame_dropDisable(arg1); return Qnil; }
1788
1850
  static VALUE _wrap_FXHorizontalFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
1789
1851
  FXHorizontalFrame *arg1 = (FXHorizontalFrame *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
1790
1852
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -1894,11 +1956,10 @@ static VALUE _wrap_FXVerticalFrame_getHeightForWidth(int argc, VALUE *argv, VALU
1894
1956
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); arg2 = NUM2INT(argv[0]);
1895
1957
  result = (FXint)FXVerticalFrame_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1896
1958
  static VALUE _wrap_FXVerticalFrame_canFocus(int argc, VALUE *argv, VALUE self) { FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ;
1897
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1959
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1898
1960
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1899
1961
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1);
1900
- result = (FXbool)FXVerticalFrame_canFocus((FXVerticalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1901
- return vresult; }
1962
+ result = (bool)FXVerticalFrame_canFocus((FXVerticalFrame const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1902
1963
  static VALUE _wrap_FXVerticalFrame_setFocus(int argc, VALUE *argv, VALUE self) { FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ;
1903
1964
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1904
1965
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); FXVerticalFrame_setFocus(arg1); return Qnil; }
@@ -1957,28 +2018,43 @@ static VALUE _wrap_FXVerticalFrame_hide(int argc, VALUE *argv, VALUE self) { FXV
1957
2018
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1958
2019
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); FXVerticalFrame_hide(arg1); return Qnil; }
1959
2020
  static VALUE _wrap_FXVerticalFrame_isComposite(int argc, VALUE *argv, VALUE self) {
1960
- FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2021
+ FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1961
2022
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1962
2023
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1);
1963
- result = (FXbool)FXVerticalFrame_isComposite((FXVerticalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
2024
+ result = (bool)FXVerticalFrame_isComposite((FXVerticalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1964
2025
  return vresult; }
1965
2026
  static VALUE _wrap_FXVerticalFrame_contains(int argc, VALUE *argv, VALUE self) { FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ;
1966
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2027
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1967
2028
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1968
2029
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1969
- result = (FXbool)FXVerticalFrame_contains((FXVerticalFrame const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2030
+ result = (bool)FXVerticalFrame_contains((FXVerticalFrame const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1970
2031
  return vresult; }
1971
2032
  static VALUE _wrap_FXVerticalFrame_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
1972
- FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2033
+ FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1973
2034
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1974
2035
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1);
1975
- result = (FXbool)FXVerticalFrame_doesSaveUnder((FXVerticalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
2036
+ result = (bool)FXVerticalFrame_doesSaveUnder((FXVerticalFrame const *)arg1); vresult = result ? Qtrue : Qfalse;
1976
2037
  return vresult; }
1977
2038
  static VALUE _wrap_FXVerticalFrame_setBackColor(int argc, VALUE *argv, VALUE self) {
1978
2039
  FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
1979
2040
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1980
2041
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); arg2 = to_FXColor(argv[0]);
1981
2042
  FXVerticalFrame_setBackColor(arg1,arg2); return Qnil; }
2043
+ static VALUE _wrap_FXVerticalFrame_tr(int argc, VALUE *argv, VALUE self) { FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ;
2044
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2045
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2046
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2047
+ arg3 = StringValuePtr(argv[1]); }
2048
+ result = (FXchar *)FXVerticalFrame_tr((FXVerticalFrame const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2049
+ vresult = rb_str_new2(result); return vresult; }
2050
+ static VALUE _wrap_FXVerticalFrame_dropEnable(int argc, VALUE *argv, VALUE self) {
2051
+ FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; if ((argc < 0) || (argc > 0))
2052
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2053
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); FXVerticalFrame_dropEnable(arg1); return Qnil; }
2054
+ static VALUE _wrap_FXVerticalFrame_dropDisable(int argc, VALUE *argv, VALUE self) {
2055
+ FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; if ((argc < 0) || (argc > 0))
2056
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2057
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXVerticalFrame, 1); FXVerticalFrame_dropDisable(arg1); return Qnil; }
1982
2058
  static VALUE _wrap_FXVerticalFrame_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
1983
2059
  FXVerticalFrame *arg1 = (FXVerticalFrame *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
1984
2060
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -2154,9 +2230,9 @@ static VALUE _wrap_FXMatrix_getHeightForWidth(int argc, VALUE *argv, VALUE self)
2154
2230
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2155
2231
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); arg2 = NUM2INT(argv[0]);
2156
2232
  result = (FXint)FXMatrix_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2157
- static VALUE _wrap_FXMatrix_canFocus(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; FXbool result;
2233
+ static VALUE _wrap_FXMatrix_canFocus(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; bool result;
2158
2234
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2159
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); result = (FXbool)FXMatrix_canFocus((FXMatrix const *)arg1);
2235
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); result = (bool)FXMatrix_canFocus((FXMatrix const *)arg1);
2160
2236
  vresult = result ? Qtrue : Qfalse; return vresult; }
2161
2237
  static VALUE _wrap_FXMatrix_setFocus(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ;
2162
2238
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -2212,23 +2288,36 @@ static VALUE _wrap_FXMatrix_show(int argc, VALUE *argv, VALUE self) { FXMatrix *
2212
2288
  static VALUE _wrap_FXMatrix_hide(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ;
2213
2289
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2214
2290
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); FXMatrix_hide(arg1); return Qnil; }
2215
- static VALUE _wrap_FXMatrix_isComposite(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; FXbool result;
2291
+ static VALUE _wrap_FXMatrix_isComposite(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; bool result;
2216
2292
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2217
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1);
2218
- result = (FXbool)FXMatrix_isComposite((FXMatrix const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2293
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); result = (bool)FXMatrix_isComposite((FXMatrix const *)arg1);
2294
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2219
2295
  static VALUE _wrap_FXMatrix_contains(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; FXint arg2 ;
2220
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2296
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2221
2297
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2222
2298
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2223
- result = (FXbool)FXMatrix_contains((FXMatrix const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2224
- static VALUE _wrap_FXMatrix_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; FXbool result;
2299
+ result = (bool)FXMatrix_contains((FXMatrix const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2300
+ static VALUE _wrap_FXMatrix_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; bool result;
2225
2301
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2226
2302
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1);
2227
- result = (FXbool)FXMatrix_doesSaveUnder((FXMatrix const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2303
+ result = (bool)FXMatrix_doesSaveUnder((FXMatrix const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2228
2304
  static VALUE _wrap_FXMatrix_setBackColor(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; FXColor arg2 ;
2229
2305
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2230
2306
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); arg2 = to_FXColor(argv[0]);
2231
2307
  FXMatrix_setBackColor(arg1,arg2); return Qnil; }
2308
+ static VALUE _wrap_FXMatrix_tr(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ; FXchar *arg2 ;
2309
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2310
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2311
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2312
+ arg3 = StringValuePtr(argv[1]); }
2313
+ result = (FXchar *)FXMatrix_tr((FXMatrix const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2314
+ vresult = rb_str_new2(result); return vresult; }
2315
+ static VALUE _wrap_FXMatrix_dropEnable(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ;
2316
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2317
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); FXMatrix_dropEnable(arg1); return Qnil; }
2318
+ static VALUE _wrap_FXMatrix_dropDisable(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ;
2319
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2320
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1); FXMatrix_dropDisable(arg1); return Qnil; }
2232
2321
  static VALUE _wrap_FXMatrix_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXMatrix *arg1 = (FXMatrix *) 0 ;
2233
2322
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2234
2323
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXMatrix, 1);
@@ -2268,6 +2357,24 @@ static VALUE _wrap_FXGroupBox_onPaint(int argc, VALUE *argv, VALUE self) { FXGro
2268
2357
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2269
2358
  SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = to_FXEvent(argv[2]);
2270
2359
  result = (long)(arg1)->onPaint(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
2360
+ static VALUE _wrap_FXGroupBox_onCmdSetValue(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2361
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
2362
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2363
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2364
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
2365
+ result = (long)(arg1)->onCmdSetValue(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
2366
+ static VALUE _wrap_FXGroupBox_onCmdSetStringValue(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2367
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
2368
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2369
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2370
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
2371
+ result = (long)(arg1)->onCmdSetStringValue(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
2372
+ static VALUE _wrap_FXGroupBox_onCmdGetStringValue(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2373
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 ; void *arg4 = (void *) 0 ; long result; VALUE vresult = Qnil;
2374
+ if ((argc < 3) || (argc > 3)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 3)",argc);
2375
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2376
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXObject, 1); arg3 = NUM2UINT(argv[1]); arg4 = 0;
2377
+ result = (long)(arg1)->onCmdGetStringValue(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
2271
2378
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
2272
2379
  static VALUE _wrap_FXGroupBox_allocate(VALUE self) {
2273
2380
  #else
@@ -2377,10 +2484,10 @@ static VALUE _wrap_FXGroupBox_getHeightForWidth(int argc, VALUE *argv, VALUE sel
2377
2484
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2378
2485
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); arg2 = NUM2INT(argv[0]);
2379
2486
  result = (FXint)FXGroupBox_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2380
- static VALUE _wrap_FXGroupBox_canFocus(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ; FXbool result;
2487
+ static VALUE _wrap_FXGroupBox_canFocus(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ; bool result;
2381
2488
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2382
2489
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2383
- result = (FXbool)FXGroupBox_canFocus((FXGroupBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2490
+ result = (bool)FXGroupBox_canFocus((FXGroupBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2384
2491
  static VALUE _wrap_FXGroupBox_setFocus(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2385
2492
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2386
2493
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); FXGroupBox_setFocus(arg1); return Qnil; }
@@ -2436,25 +2543,37 @@ static VALUE _wrap_FXGroupBox_hide(int argc, VALUE *argv, VALUE self) { FXGroupB
2436
2543
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2437
2544
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); FXGroupBox_hide(arg1); return Qnil; }
2438
2545
  static VALUE _wrap_FXGroupBox_isComposite(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2439
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2546
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2440
2547
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2441
2548
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2442
- result = (FXbool)FXGroupBox_isComposite((FXGroupBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2549
+ result = (bool)FXGroupBox_isComposite((FXGroupBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2443
2550
  static VALUE _wrap_FXGroupBox_contains(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ; FXint arg2 ;
2444
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2551
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2445
2552
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2446
2553
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2447
- result = (FXbool)FXGroupBox_contains((FXGroupBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2448
- return vresult; }
2554
+ result = (bool)FXGroupBox_contains((FXGroupBox const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2449
2555
  static VALUE _wrap_FXGroupBox_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2450
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2556
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2451
2557
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2452
2558
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
2453
- result = (FXbool)FXGroupBox_doesSaveUnder((FXGroupBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2559
+ result = (bool)FXGroupBox_doesSaveUnder((FXGroupBox const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2454
2560
  static VALUE _wrap_FXGroupBox_setBackColor(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2455
2561
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2456
2562
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); arg2 = to_FXColor(argv[0]);
2457
2563
  FXGroupBox_setBackColor(arg1,arg2); return Qnil; }
2564
+ static VALUE _wrap_FXGroupBox_tr(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ; FXchar *arg2 ;
2565
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2566
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2567
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2568
+ arg3 = StringValuePtr(argv[1]); }
2569
+ result = (FXchar *)FXGroupBox_tr((FXGroupBox const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2570
+ vresult = rb_str_new2(result); return vresult; }
2571
+ static VALUE _wrap_FXGroupBox_dropEnable(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2572
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2573
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); FXGroupBox_dropEnable(arg1); return Qnil; }
2574
+ static VALUE _wrap_FXGroupBox_dropDisable(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2575
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2576
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1); FXGroupBox_dropDisable(arg1); return Qnil; }
2458
2577
  static VALUE _wrap_FXGroupBox_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXGroupBox *arg1 = (FXGroupBox *) 0 ;
2459
2578
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2460
2579
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXGroupBox, 1);
@@ -2616,10 +2735,10 @@ static VALUE _wrap_FXSwitcher_getHeightForWidth(int argc, VALUE *argv, VALUE sel
2616
2735
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2617
2736
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); arg2 = NUM2INT(argv[0]);
2618
2737
  result = (FXint)FXSwitcher_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2619
- static VALUE _wrap_FXSwitcher_canFocus(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ; FXbool result;
2738
+ static VALUE _wrap_FXSwitcher_canFocus(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ; bool result;
2620
2739
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2621
2740
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1);
2622
- result = (FXbool)FXSwitcher_canFocus((FXSwitcher const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2741
+ result = (bool)FXSwitcher_canFocus((FXSwitcher const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2623
2742
  static VALUE _wrap_FXSwitcher_setFocus(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2624
2743
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2625
2744
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); FXSwitcher_setFocus(arg1); return Qnil; }
@@ -2675,25 +2794,37 @@ static VALUE _wrap_FXSwitcher_hide(int argc, VALUE *argv, VALUE self) { FXSwitch
2675
2794
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2676
2795
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); FXSwitcher_hide(arg1); return Qnil; }
2677
2796
  static VALUE _wrap_FXSwitcher_isComposite(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2678
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2797
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2679
2798
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2680
2799
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1);
2681
- result = (FXbool)FXSwitcher_isComposite((FXSwitcher const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2800
+ result = (bool)FXSwitcher_isComposite((FXSwitcher const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2682
2801
  static VALUE _wrap_FXSwitcher_contains(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ; FXint arg2 ;
2683
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2802
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2684
2803
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2685
2804
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2686
- result = (FXbool)FXSwitcher_contains((FXSwitcher const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2687
- return vresult; }
2805
+ result = (bool)FXSwitcher_contains((FXSwitcher const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
2688
2806
  static VALUE _wrap_FXSwitcher_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2689
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2807
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2690
2808
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2691
2809
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1);
2692
- result = (FXbool)FXSwitcher_doesSaveUnder((FXSwitcher const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2810
+ result = (bool)FXSwitcher_doesSaveUnder((FXSwitcher const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2693
2811
  static VALUE _wrap_FXSwitcher_setBackColor(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2694
2812
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2695
2813
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); arg2 = to_FXColor(argv[0]);
2696
2814
  FXSwitcher_setBackColor(arg1,arg2); return Qnil; }
2815
+ static VALUE _wrap_FXSwitcher_tr(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ; FXchar *arg2 ;
2816
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2817
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2818
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
2819
+ arg3 = StringValuePtr(argv[1]); }
2820
+ result = (FXchar *)FXSwitcher_tr((FXSwitcher const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
2821
+ vresult = rb_str_new2(result); return vresult; }
2822
+ static VALUE _wrap_FXSwitcher_dropEnable(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2823
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2824
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); FXSwitcher_dropEnable(arg1); return Qnil; }
2825
+ static VALUE _wrap_FXSwitcher_dropDisable(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2826
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2827
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1); FXSwitcher_dropDisable(arg1); return Qnil; }
2697
2828
  static VALUE _wrap_FXSwitcher_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXSwitcher *arg1 = (FXSwitcher *) 0 ;
2698
2829
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2699
2830
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSwitcher, 1);
@@ -2758,18 +2889,19 @@ static VALUE _wrap_FXShutterItem_allocate(VALUE self) {
2758
2889
  #endif
2759
2890
  return vresult; }
2760
2891
  static VALUE _wrap_new_FXShutterItem(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
2761
- FXString *arg2 = 0 ; FXIcon *arg3 = (FXIcon *) 0 ; FXuint arg4 = (FXuint) 0 ; FXint arg5 = (FXint) 0 ;
2762
- FXint arg6 = (FXint) 0 ; FXint arg7 = (FXint) 0 ; FXint arg8 = (FXint) 0 ; FXint arg9 = (FXint) DEFAULT_SPACING ;
2892
+ FXString const &arg2_defvalue = FXString::null ; FXString *arg2 = (FXString *) &arg2_defvalue ;
2893
+ FXIcon *arg3 = (FXIcon *) 0 ; FXuint arg4 = (FXuint) 0 ; FXint arg5 = (FXint) 0 ; FXint arg6 = (FXint) 0 ;
2894
+ FXint arg7 = (FXint) 0 ; FXint arg8 = (FXint) 0 ; FXint arg9 = (FXint) DEFAULT_SPACING ;
2763
2895
  FXint arg10 = (FXint) DEFAULT_SPACING ; FXint arg11 = (FXint) DEFAULT_SPACING ; FXint arg12 = (FXint) DEFAULT_SPACING ;
2764
2896
  FXint arg13 = (FXint) DEFAULT_SPACING ; FXint arg14 = (FXint) DEFAULT_SPACING ; FXShutterItem *result;
2765
- SwigValueWrapper<FXString > p2 ; if ((argc < 2) || (argc > 14))
2766
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2767
- SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXShutter, 1); p2 = to_FXString(argv[1]); arg2 = &p2; if (argc > 2) {
2768
- SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXIcon, 1); } if (argc > 3) { arg4 = NUM2UINT(argv[3]); }
2769
- if (argc > 4) { arg5 = NUM2INT(argv[4]); } if (argc > 5) { arg6 = NUM2INT(argv[5]); } if (argc > 6) {
2770
- arg7 = NUM2INT(argv[6]); } if (argc > 7) { arg8 = NUM2INT(argv[7]); } if (argc > 8) { arg9 = NUM2INT(argv[8]); }
2771
- if (argc > 9) { arg10 = NUM2INT(argv[9]); } if (argc > 10) { arg11 = NUM2INT(argv[10]); } if (argc > 11) {
2772
- arg12 = NUM2INT(argv[11]); } if (argc > 12) { arg13 = NUM2INT(argv[12]); } if (argc > 13) {
2897
+ SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 14))
2898
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2899
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXShutter, 1); if (argc > 1) { p2 = to_FXString(argv[1]); arg2 = &p2; }
2900
+ if (argc > 2) { SWIG_ConvertPtr(argv[2], (void **) &arg3, SWIGTYPE_p_FXIcon, 1); } if (argc > 3) {
2901
+ arg4 = NUM2UINT(argv[3]); } if (argc > 4) { arg5 = NUM2INT(argv[4]); } if (argc > 5) { arg6 = NUM2INT(argv[5]); }
2902
+ if (argc > 6) { arg7 = NUM2INT(argv[6]); } if (argc > 7) { arg8 = NUM2INT(argv[7]); } if (argc > 8) {
2903
+ arg9 = NUM2INT(argv[8]); } if (argc > 9) { arg10 = NUM2INT(argv[9]); } if (argc > 10) { arg11 = NUM2INT(argv[10]); }
2904
+ if (argc > 11) { arg12 = NUM2INT(argv[11]); } if (argc > 12) { arg13 = NUM2INT(argv[12]); } if (argc > 13) {
2773
2905
  arg14 = NUM2INT(argv[13]); } {
2774
2906
  result = (FXShutterItem *)new_FXShutterItem(arg1,(FXString const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12,arg13,arg14);
2775
2907
  DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
@@ -2855,10 +2987,10 @@ static VALUE _wrap_FXShutterItem_getHeightForWidth(int argc, VALUE *argv, VALUE
2855
2987
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); arg2 = NUM2INT(argv[0]);
2856
2988
  result = (FXint)FXShutterItem_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
2857
2989
  static VALUE _wrap_FXShutterItem_canFocus(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
2858
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2990
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2859
2991
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2860
2992
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1);
2861
- result = (FXbool)FXShutterItem_canFocus((FXShutterItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2993
+ result = (bool)FXShutterItem_canFocus((FXShutterItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2862
2994
  static VALUE _wrap_FXShutterItem_setFocus(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
2863
2995
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2864
2996
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); FXShutterItem_setFocus(arg1); return Qnil; }
@@ -2914,26 +3046,38 @@ static VALUE _wrap_FXShutterItem_hide(int argc, VALUE *argv, VALUE self) { FXShu
2914
3046
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2915
3047
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); FXShutterItem_hide(arg1); return Qnil; }
2916
3048
  static VALUE _wrap_FXShutterItem_isComposite(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
2917
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3049
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2918
3050
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2919
3051
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1);
2920
- result = (FXbool)FXShutterItem_isComposite((FXShutterItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3052
+ result = (bool)FXShutterItem_isComposite((FXShutterItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2921
3053
  static VALUE _wrap_FXShutterItem_contains(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
2922
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3054
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2923
3055
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2924
3056
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2925
- result = (FXbool)FXShutterItem_contains((FXShutterItem const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3057
+ result = (bool)FXShutterItem_contains((FXShutterItem const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
2926
3058
  return vresult; }
2927
3059
  static VALUE _wrap_FXShutterItem_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
2928
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3060
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2929
3061
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2930
3062
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1);
2931
- result = (FXbool)FXShutterItem_doesSaveUnder((FXShutterItem const *)arg1); vresult = result ? Qtrue : Qfalse;
2932
- return vresult; }
3063
+ result = (bool)FXShutterItem_doesSaveUnder((FXShutterItem const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
2933
3064
  static VALUE _wrap_FXShutterItem_setBackColor(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
2934
3065
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2935
3066
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); arg2 = to_FXColor(argv[0]);
2936
3067
  FXShutterItem_setBackColor(arg1,arg2); return Qnil; }
3068
+ static VALUE _wrap_FXShutterItem_tr(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
3069
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3070
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3071
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3072
+ arg3 = StringValuePtr(argv[1]); }
3073
+ result = (FXchar *)FXShutterItem_tr((FXShutterItem const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3074
+ vresult = rb_str_new2(result); return vresult; }
3075
+ static VALUE _wrap_FXShutterItem_dropEnable(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
3076
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3077
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); FXShutterItem_dropEnable(arg1); return Qnil; }
3078
+ static VALUE _wrap_FXShutterItem_dropDisable(int argc, VALUE *argv, VALUE self) { FXShutterItem *arg1 = (FXShutterItem *) 0 ;
3079
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3080
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutterItem, 1); FXShutterItem_dropDisable(arg1); return Qnil; }
2937
3081
  static VALUE _wrap_FXShutterItem_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
2938
3082
  FXShutterItem *arg1 = (FXShutterItem *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
2939
3083
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -3103,10 +3247,10 @@ static VALUE _wrap_FXShutter_getHeightForWidth(int argc, VALUE *argv, VALUE self
3103
3247
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3104
3248
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); arg2 = NUM2INT(argv[0]);
3105
3249
  result = (FXint)FXShutter_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3106
- static VALUE _wrap_FXShutter_canFocus(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; FXbool result;
3250
+ static VALUE _wrap_FXShutter_canFocus(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; bool result;
3107
3251
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3108
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1);
3109
- result = (FXbool)FXShutter_canFocus((FXShutter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3252
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); result = (bool)FXShutter_canFocus((FXShutter const *)arg1);
3253
+ vresult = result ? Qtrue : Qfalse; return vresult; }
3110
3254
  static VALUE _wrap_FXShutter_setFocus(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3111
3255
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3112
3256
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); FXShutter_setFocus(arg1); return Qnil; }
@@ -3161,24 +3305,36 @@ static VALUE _wrap_FXShutter_show(int argc, VALUE *argv, VALUE self) { FXShutter
3161
3305
  static VALUE _wrap_FXShutter_hide(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3162
3306
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3163
3307
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); FXShutter_hide(arg1); return Qnil; }
3164
- static VALUE _wrap_FXShutter_isComposite(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; FXbool result;
3308
+ static VALUE _wrap_FXShutter_isComposite(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; bool result;
3165
3309
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3166
3310
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1);
3167
- result = (FXbool)FXShutter_isComposite((FXShutter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3311
+ result = (bool)FXShutter_isComposite((FXShutter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3168
3312
  static VALUE _wrap_FXShutter_contains(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; FXint arg2 ;
3169
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3313
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3170
3314
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3171
3315
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3172
- result = (FXbool)FXShutter_contains((FXShutter const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3173
- static VALUE _wrap_FXShutter_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3174
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3175
- rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3316
+ result = (bool)FXShutter_contains((FXShutter const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3317
+ static VALUE _wrap_FXShutter_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; bool result;
3318
+ VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3176
3319
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1);
3177
- result = (FXbool)FXShutter_doesSaveUnder((FXShutter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3320
+ result = (bool)FXShutter_doesSaveUnder((FXShutter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3178
3321
  static VALUE _wrap_FXShutter_setBackColor(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3179
3322
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3180
3323
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); arg2 = to_FXColor(argv[0]);
3181
3324
  FXShutter_setBackColor(arg1,arg2); return Qnil; }
3325
+ static VALUE _wrap_FXShutter_tr(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ; FXchar *arg2 ;
3326
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3327
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3328
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3329
+ arg3 = StringValuePtr(argv[1]); }
3330
+ result = (FXchar *)FXShutter_tr((FXShutter const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3331
+ vresult = rb_str_new2(result); return vresult; }
3332
+ static VALUE _wrap_FXShutter_dropEnable(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3333
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3334
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); FXShutter_dropEnable(arg1); return Qnil; }
3335
+ static VALUE _wrap_FXShutter_dropDisable(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3336
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3337
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1); FXShutter_dropDisable(arg1); return Qnil; }
3182
3338
  static VALUE _wrap_FXShutter_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXShutter *arg1 = (FXShutter *) 0 ;
3183
3339
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3184
3340
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXShutter, 1);
@@ -3406,10 +3562,10 @@ static VALUE _wrap_FXSplitter_getHeightForWidth(int argc, VALUE *argv, VALUE sel
3406
3562
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3407
3563
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); arg2 = NUM2INT(argv[0]);
3408
3564
  result = (FXint)FXSplitter_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3409
- static VALUE _wrap_FXSplitter_canFocus(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ; FXbool result;
3565
+ static VALUE _wrap_FXSplitter_canFocus(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ; bool result;
3410
3566
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3411
3567
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1);
3412
- result = (FXbool)FXSplitter_canFocus((FXSplitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3568
+ result = (bool)FXSplitter_canFocus((FXSplitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3413
3569
  static VALUE _wrap_FXSplitter_setFocus(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3414
3570
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3415
3571
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); FXSplitter_setFocus(arg1); return Qnil; }
@@ -3465,25 +3621,37 @@ static VALUE _wrap_FXSplitter_hide(int argc, VALUE *argv, VALUE self) { FXSplitt
3465
3621
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3466
3622
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); FXSplitter_hide(arg1); return Qnil; }
3467
3623
  static VALUE _wrap_FXSplitter_isComposite(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3468
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3624
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3469
3625
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3470
3626
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1);
3471
- result = (FXbool)FXSplitter_isComposite((FXSplitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3627
+ result = (bool)FXSplitter_isComposite((FXSplitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3472
3628
  static VALUE _wrap_FXSplitter_contains(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ; FXint arg2 ;
3473
- FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3629
+ FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3474
3630
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3475
3631
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3476
- result = (FXbool)FXSplitter_contains((FXSplitter const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3477
- return vresult; }
3632
+ result = (bool)FXSplitter_contains((FXSplitter const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse; return vresult; }
3478
3633
  static VALUE _wrap_FXSplitter_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3479
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3634
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3480
3635
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3481
3636
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1);
3482
- result = (FXbool)FXSplitter_doesSaveUnder((FXSplitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3637
+ result = (bool)FXSplitter_doesSaveUnder((FXSplitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3483
3638
  static VALUE _wrap_FXSplitter_setBackColor(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3484
3639
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3485
3640
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); arg2 = to_FXColor(argv[0]);
3486
3641
  FXSplitter_setBackColor(arg1,arg2); return Qnil; }
3642
+ static VALUE _wrap_FXSplitter_tr(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ; FXchar *arg2 ;
3643
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
3644
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3645
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
3646
+ arg3 = StringValuePtr(argv[1]); }
3647
+ result = (FXchar *)FXSplitter_tr((FXSplitter const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
3648
+ vresult = rb_str_new2(result); return vresult; }
3649
+ static VALUE _wrap_FXSplitter_dropEnable(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3650
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3651
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); FXSplitter_dropEnable(arg1); return Qnil; }
3652
+ static VALUE _wrap_FXSplitter_dropDisable(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3653
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3654
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1); FXSplitter_dropDisable(arg1); return Qnil; }
3487
3655
  static VALUE _wrap_FXSplitter_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXSplitter *arg1 = (FXSplitter *) 0 ;
3488
3656
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3489
3657
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXSplitter, 1);
@@ -3700,14 +3868,15 @@ static VALUE _wrap_FX4Splitter_getBarSize(int argc, VALUE *argv, VALUE self) { F
3700
3868
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1);
3701
3869
  result = (FXint)((FX4Splitter const *)arg1)->getBarSize(); vresult = INT2NUM(result); return vresult; }
3702
3870
  static VALUE _wrap_FX4Splitter_setExpanded(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3703
- FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3704
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); arg2 = NUM2INT(argv[0]); (arg1)->setExpanded(arg2);
3705
- return Qnil; }
3871
+ FXuint arg2 = (FXuint) FX4Splitter::ExpandAll ; if ((argc < 0) || (argc > 1))
3872
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3873
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); if (argc > 0) { arg2 = NUM2UINT(argv[0]); }
3874
+ (arg1)->setExpanded(arg2); return Qnil; }
3706
3875
  static VALUE _wrap_FX4Splitter_getExpanded(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3707
- FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3876
+ FXuint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3708
3877
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3709
3878
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1);
3710
- result = (FXint)((FX4Splitter const *)arg1)->getExpanded(); vresult = INT2NUM(result); return vresult; }
3879
+ result = (FXuint)((FX4Splitter const *)arg1)->getExpanded(); vresult = UINT2NUM(result); return vresult; }
3711
3880
  static void
3712
3881
  free_FX4Splitter(FX4Splitter *arg1) {
3713
3882
  delete arg1;
@@ -3756,10 +3925,10 @@ static VALUE _wrap_FX4Splitter_getHeightForWidth(int argc, VALUE *argv, VALUE se
3756
3925
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); arg2 = NUM2INT(argv[0]);
3757
3926
  result = (FXint)FX4Splitter_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3758
3927
  static VALUE _wrap_FX4Splitter_canFocus(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3759
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3928
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3760
3929
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3761
3930
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1);
3762
- result = (FXbool)FX4Splitter_canFocus((FX4Splitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3931
+ result = (bool)FX4Splitter_canFocus((FX4Splitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3763
3932
  static VALUE _wrap_FX4Splitter_setFocus(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3764
3933
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3765
3934
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); FX4Splitter_setFocus(arg1); return Qnil; }
@@ -3815,25 +3984,38 @@ static VALUE _wrap_FX4Splitter_hide(int argc, VALUE *argv, VALUE self) { FX4Spli
3815
3984
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3816
3985
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); FX4Splitter_hide(arg1); return Qnil; }
3817
3986
  static VALUE _wrap_FX4Splitter_isComposite(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3818
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3987
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3819
3988
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3820
3989
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1);
3821
- result = (FXbool)FX4Splitter_isComposite((FX4Splitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3990
+ result = (bool)FX4Splitter_isComposite((FX4Splitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3822
3991
  static VALUE _wrap_FX4Splitter_contains(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3823
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3992
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
3824
3993
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
3825
3994
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
3826
- result = (FXbool)FX4Splitter_contains((FX4Splitter const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3995
+ result = (bool)FX4Splitter_contains((FX4Splitter const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
3827
3996
  return vresult; }
3828
3997
  static VALUE _wrap_FX4Splitter_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3829
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3998
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3830
3999
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3831
4000
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1);
3832
- result = (FXbool)FX4Splitter_doesSaveUnder((FX4Splitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4001
+ result = (bool)FX4Splitter_doesSaveUnder((FX4Splitter const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3833
4002
  static VALUE _wrap_FX4Splitter_setBackColor(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3834
4003
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3835
4004
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); arg2 = to_FXColor(argv[0]);
3836
4005
  FX4Splitter_setBackColor(arg1,arg2); return Qnil; }
4006
+ static VALUE _wrap_FX4Splitter_tr(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ; FXchar *arg2 ;
4007
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4008
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4009
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4010
+ arg3 = StringValuePtr(argv[1]); }
4011
+ result = (FXchar *)FX4Splitter_tr((FX4Splitter const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4012
+ vresult = rb_str_new2(result); return vresult; }
4013
+ static VALUE _wrap_FX4Splitter_dropEnable(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
4014
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4015
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); FX4Splitter_dropEnable(arg1); return Qnil; }
4016
+ static VALUE _wrap_FX4Splitter_dropDisable(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
4017
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4018
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1); FX4Splitter_dropDisable(arg1); return Qnil; }
3837
4019
  static VALUE _wrap_FX4Splitter_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FX4Splitter *arg1 = (FX4Splitter *) 0 ;
3838
4020
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
3839
4021
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FX4Splitter, 1);
@@ -3962,10 +4144,10 @@ static VALUE _wrap_FXStatusBar_getHeightForWidth(int argc, VALUE *argv, VALUE se
3962
4144
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); arg2 = NUM2INT(argv[0]);
3963
4145
  result = (FXint)FXStatusBar_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
3964
4146
  static VALUE _wrap_FXStatusBar_canFocus(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
3965
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4147
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
3966
4148
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3967
4149
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1);
3968
- result = (FXbool)FXStatusBar_canFocus((FXStatusBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4150
+ result = (bool)FXStatusBar_canFocus((FXStatusBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
3969
4151
  static VALUE _wrap_FXStatusBar_setFocus(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
3970
4152
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
3971
4153
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); FXStatusBar_setFocus(arg1); return Qnil; }
@@ -4021,25 +4203,38 @@ static VALUE _wrap_FXStatusBar_hide(int argc, VALUE *argv, VALUE self) { FXStatu
4021
4203
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4022
4204
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); FXStatusBar_hide(arg1); return Qnil; }
4023
4205
  static VALUE _wrap_FXStatusBar_isComposite(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4024
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4206
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4025
4207
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4026
4208
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1);
4027
- result = (FXbool)FXStatusBar_isComposite((FXStatusBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4209
+ result = (bool)FXStatusBar_isComposite((FXStatusBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4028
4210
  static VALUE _wrap_FXStatusBar_contains(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4029
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4211
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4030
4212
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
4031
4213
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
4032
- result = (FXbool)FXStatusBar_contains((FXStatusBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4214
+ result = (bool)FXStatusBar_contains((FXStatusBar const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4033
4215
  return vresult; }
4034
4216
  static VALUE _wrap_FXStatusBar_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4035
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4217
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4036
4218
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4037
4219
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1);
4038
- result = (FXbool)FXStatusBar_doesSaveUnder((FXStatusBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4220
+ result = (bool)FXStatusBar_doesSaveUnder((FXStatusBar const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4039
4221
  static VALUE _wrap_FXStatusBar_setBackColor(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4040
4222
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4041
4223
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); arg2 = to_FXColor(argv[0]);
4042
4224
  FXStatusBar_setBackColor(arg1,arg2); return Qnil; }
4225
+ static VALUE _wrap_FXStatusBar_tr(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ; FXchar *arg2 ;
4226
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4227
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4228
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4229
+ arg3 = StringValuePtr(argv[1]); }
4230
+ result = (FXchar *)FXStatusBar_tr((FXStatusBar const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4231
+ vresult = rb_str_new2(result); return vresult; }
4232
+ static VALUE _wrap_FXStatusBar_dropEnable(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4233
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4234
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); FXStatusBar_dropEnable(arg1); return Qnil; }
4235
+ static VALUE _wrap_FXStatusBar_dropDisable(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4236
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4237
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1); FXStatusBar_dropDisable(arg1); return Qnil; }
4043
4238
  static VALUE _wrap_FXStatusBar_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXStatusBar *arg1 = (FXStatusBar *) 0 ;
4044
4239
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4045
4240
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXStatusBar, 1);
@@ -4239,10 +4434,10 @@ static VALUE _wrap_FXScrollArea_getHeightForWidth(int argc, VALUE *argv, VALUE s
4239
4434
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); arg2 = NUM2INT(argv[0]);
4240
4435
  result = (FXint)FXScrollArea_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
4241
4436
  static VALUE _wrap_FXScrollArea_canFocus(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4242
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4437
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4243
4438
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4244
4439
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1);
4245
- result = (FXbool)FXScrollArea_canFocus((FXScrollArea const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4440
+ result = (bool)FXScrollArea_canFocus((FXScrollArea const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4246
4441
  static VALUE _wrap_FXScrollArea_setFocus(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4247
4442
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4248
4443
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); FXScrollArea_setFocus(arg1); return Qnil; }
@@ -4298,25 +4493,38 @@ static VALUE _wrap_FXScrollArea_hide(int argc, VALUE *argv, VALUE self) { FXScro
4298
4493
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4299
4494
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); FXScrollArea_hide(arg1); return Qnil; }
4300
4495
  static VALUE _wrap_FXScrollArea_isComposite(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4301
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4496
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4302
4497
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4303
4498
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1);
4304
- result = (FXbool)FXScrollArea_isComposite((FXScrollArea const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4499
+ result = (bool)FXScrollArea_isComposite((FXScrollArea const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4305
4500
  static VALUE _wrap_FXScrollArea_contains(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4306
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4501
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4307
4502
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
4308
4503
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
4309
- result = (FXbool)FXScrollArea_contains((FXScrollArea const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4504
+ result = (bool)FXScrollArea_contains((FXScrollArea const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4310
4505
  return vresult; }
4311
4506
  static VALUE _wrap_FXScrollArea_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4312
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4507
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4313
4508
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4314
4509
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1);
4315
- result = (FXbool)FXScrollArea_doesSaveUnder((FXScrollArea const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4510
+ result = (bool)FXScrollArea_doesSaveUnder((FXScrollArea const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4316
4511
  static VALUE _wrap_FXScrollArea_setBackColor(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4317
4512
  FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4318
4513
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); arg2 = to_FXColor(argv[0]);
4319
4514
  FXScrollArea_setBackColor(arg1,arg2); return Qnil; }
4515
+ static VALUE _wrap_FXScrollArea_tr(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ; FXchar *arg2 ;
4516
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4517
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4518
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4519
+ arg3 = StringValuePtr(argv[1]); }
4520
+ result = (FXchar *)FXScrollArea_tr((FXScrollArea const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4521
+ vresult = rb_str_new2(result); return vresult; }
4522
+ static VALUE _wrap_FXScrollArea_dropEnable(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4523
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4524
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); FXScrollArea_dropEnable(arg1); return Qnil; }
4525
+ static VALUE _wrap_FXScrollArea_dropDisable(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4526
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4527
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1); FXScrollArea_dropDisable(arg1); return Qnil; }
4320
4528
  static VALUE _wrap_FXScrollArea_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXScrollArea *arg1 = (FXScrollArea *) 0 ;
4321
4529
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4322
4530
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollArea, 1);
@@ -4482,10 +4690,10 @@ static VALUE _wrap_FXScrollWindow_getHeightForWidth(int argc, VALUE *argv, VALUE
4482
4690
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); arg2 = NUM2INT(argv[0]);
4483
4691
  result = (FXint)FXScrollWindow_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
4484
4692
  static VALUE _wrap_FXScrollWindow_canFocus(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4485
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4693
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4486
4694
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4487
4695
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1);
4488
- result = (FXbool)FXScrollWindow_canFocus((FXScrollWindow const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4696
+ result = (bool)FXScrollWindow_canFocus((FXScrollWindow const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4489
4697
  static VALUE _wrap_FXScrollWindow_setFocus(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4490
4698
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4491
4699
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); FXScrollWindow_setFocus(arg1); return Qnil; }
@@ -4541,28 +4749,40 @@ static VALUE _wrap_FXScrollWindow_hide(int argc, VALUE *argv, VALUE self) { FXSc
4541
4749
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4542
4750
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); FXScrollWindow_hide(arg1); return Qnil; }
4543
4751
  static VALUE _wrap_FXScrollWindow_isComposite(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4544
- FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4752
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4545
4753
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4546
4754
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1);
4547
- result = (FXbool)FXScrollWindow_isComposite((FXScrollWindow const *)arg1); vresult = result ? Qtrue : Qfalse;
4548
- return vresult; }
4755
+ result = (bool)FXScrollWindow_isComposite((FXScrollWindow const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
4549
4756
  static VALUE _wrap_FXScrollWindow_contains(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4550
- FXint arg2 ; FXint arg3 ; FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4757
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
4551
4758
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
4552
4759
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
4553
- result = (FXbool)FXScrollWindow_contains((FXScrollWindow const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4760
+ result = (bool)FXScrollWindow_contains((FXScrollWindow const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
4554
4761
  return vresult; }
4555
4762
  static VALUE _wrap_FXScrollWindow_doesSaveUnder(int argc, VALUE *argv, VALUE self) {
4556
- FXScrollWindow *arg1 = (FXScrollWindow *) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4763
+ FXScrollWindow *arg1 = (FXScrollWindow *) 0 ; bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
4557
4764
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4558
4765
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1);
4559
- result = (FXbool)FXScrollWindow_doesSaveUnder((FXScrollWindow const *)arg1); vresult = result ? Qtrue : Qfalse;
4766
+ result = (bool)FXScrollWindow_doesSaveUnder((FXScrollWindow const *)arg1); vresult = result ? Qtrue : Qfalse;
4560
4767
  return vresult; }
4561
4768
  static VALUE _wrap_FXScrollWindow_setBackColor(int argc, VALUE *argv, VALUE self) {
4562
4769
  FXScrollWindow *arg1 = (FXScrollWindow *) 0 ; FXColor arg2 ; if ((argc < 1) || (argc > 1))
4563
4770
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4564
4771
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); arg2 = to_FXColor(argv[0]);
4565
4772
  FXScrollWindow_setBackColor(arg1,arg2); return Qnil; }
4773
+ static VALUE _wrap_FXScrollWindow_tr(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4774
+ FXchar *arg2 ; FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
4775
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
4776
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
4777
+ arg3 = StringValuePtr(argv[1]); }
4778
+ result = (FXchar *)FXScrollWindow_tr((FXScrollWindow const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
4779
+ vresult = rb_str_new2(result); return vresult; }
4780
+ static VALUE _wrap_FXScrollWindow_dropEnable(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4781
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4782
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); FXScrollWindow_dropEnable(arg1); return Qnil; }
4783
+ static VALUE _wrap_FXScrollWindow_dropDisable(int argc, VALUE *argv, VALUE self) { FXScrollWindow *arg1 = (FXScrollWindow *) 0 ;
4784
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
4785
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXScrollWindow, 1); FXScrollWindow_dropDisable(arg1); return Qnil; }
4566
4786
  static VALUE _wrap_FXScrollWindow_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) {
4567
4787
  FXScrollWindow *arg1 = (FXScrollWindow *) 0 ; FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1))
4568
4788
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
@@ -4784,12 +5004,12 @@ static void *_p_FXWindowTo_p_FXObject(void *x) {
4784
5004
  static void *_p_FXScrollWindowTo_p_FXObject(void *x) {
4785
5005
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
4786
5006
  }
4787
- static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
4788
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
4789
- }
4790
5007
  static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
4791
5008
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
4792
5009
  }
5010
+ static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
5011
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
5012
+ }
4793
5013
  static void *_p_FXSplitterTo_p_FXObject(void *x) {
4794
5014
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
4795
5015
  }
@@ -4835,6 +5055,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
4835
5055
  static void *_p_FXCursorTo_p_FXObject(void *x) {
4836
5056
  return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
4837
5057
  }
5058
+ static void *_p_FXTranslatorTo_p_FXObject(void *x) {
5059
+ return (void *)((FXObject *) ((FXTranslator *) x));
5060
+ }
4838
5061
  static void *_p_FXDockSiteTo_p_FXObject(void *x) {
4839
5062
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
4840
5063
  }
@@ -5115,7 +5338,7 @@ static void *_p_FXShutterTo_p_FXVerticalFrame(void *x) {
5115
5338
  return (void *)((FXVerticalFrame *) ((FXShutter *) x));
5116
5339
  }
5117
5340
  static swig_type_info _swigt__p_FXDockSite[] = {{"_p_FXDockSite", 0, "FXDockSite *", 0, 0, 0, 0},{"_p_FXDockSite", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5118
- static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5341
+ static swig_type_info _swigt__p_FXObject[] = {{"_p_FXObject", 0, "FXObject *", 0, 0, 0, 0},{"_p_FXDict", _p_FXDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSettings", _p_FXSettingsTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXAccelTable", _p_FXAccelTableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRegistry", _p_FXRegistryTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXId", _p_FXIdTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXIconDict", _p_FXIconDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXObject", 0, 0, 0, 0, 0, 0},{"_p_FXStringDict", _p_FXStringDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFileDict", _p_FXFileDictTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDebugTarget", _p_FXDebugTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDataTarget", _p_FXDataTargetTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTranslator", _p_FXTranslatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXApp", _p_FXAppTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5119
5342
  static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollArea", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5120
5343
  static swig_type_info _swigt__p_FXShutterItem[] = {{"_p_FXShutterItem", 0, "FXShutterItem *", 0, 0, 0, 0},{"_p_FXShutterItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
5121
5344
  static swig_type_info _swigt__p_FXDockBar[] = {{"_p_FXDockBar", 0, "FXDockBar *", 0, 0, 0, 0},{"_p_FXDockBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
@@ -5262,6 +5485,9 @@ SWIGEXPORT(void) Init_layout(void) {
5262
5485
  rb_define_method(cFXPacker.klass, "contains", VALUEFUNC(_wrap_FXPacker_contains), -1);
5263
5486
  rb_define_method(cFXPacker.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXPacker_doesSaveUnder), -1);
5264
5487
  rb_define_method(cFXPacker.klass, "setBackColor", VALUEFUNC(_wrap_FXPacker_setBackColor), -1);
5488
+ rb_define_method(cFXPacker.klass, "tr", VALUEFUNC(_wrap_FXPacker_tr), -1);
5489
+ rb_define_method(cFXPacker.klass, "dropEnable", VALUEFUNC(_wrap_FXPacker_dropEnable), -1);
5490
+ rb_define_method(cFXPacker.klass, "dropDisable", VALUEFUNC(_wrap_FXPacker_dropDisable), -1);
5265
5491
  rb_define_method(cFXPacker.klass, "setShape", VALUEFUNC(_wrap_FXPacker_setShape), -1);
5266
5492
  rb_define_method(cFXPacker.klass, "clearShape", VALUEFUNC(_wrap_FXPacker_clearShape), -1);
5267
5493
  cFXPacker.mark = (void (*)(void *)) FXRbPacker::markfunc;
@@ -5269,11 +5495,15 @@ SWIGEXPORT(void) Init_layout(void) {
5269
5495
 
5270
5496
  SWIGTYPE_p_FXPacker->dcast = (swig_dycast_func) FXPacker_dynamic_cast;
5271
5497
 
5498
+ rb_define_const(mFox,"DOCKSITE_WRAP", INT2NUM(DOCKSITE_WRAP));
5499
+ rb_define_const(mFox,"DOCKSITE_NO_WRAP", INT2NUM(DOCKSITE_NO_WRAP));
5272
5500
 
5273
5501
  cFXDockSite.klass = rb_define_class_under(mFox, "FXDockSite", ((swig_class *) SWIGTYPE_p_FXPacker->clientdata)->klass);
5274
5502
  SWIG_TypeClientData(SWIGTYPE_p_FXDockSite, (void *) &cFXDockSite);
5275
5503
  rb_define_alloc_func(cFXDockSite.klass, _wrap_FXDockSite_allocate);
5276
5504
  rb_define_method(cFXDockSite.klass, "initialize", VALUEFUNC(_wrap_new_FXDockSite), -1);
5505
+ rb_define_method(cFXDockSite.klass, "wrapGalleys=", VALUEFUNC(_wrap_FXDockSite_wrapGalleyse___), -1);
5506
+ rb_define_method(cFXDockSite.klass, "wrapGalleys?", VALUEFUNC(_wrap_FXDockSite_wrapGalleysq___), -1);
5277
5507
  rb_define_method(cFXDockSite.klass, "save", VALUEFUNC(_wrap_FXDockSite_save), -1);
5278
5508
  rb_define_method(cFXDockSite.klass, "load", VALUEFUNC(_wrap_FXDockSite_load), -1);
5279
5509
  rb_define_method(cFXDockSite.klass, "create", VALUEFUNC(_wrap_FXDockSite_create), -1);
@@ -5304,6 +5534,9 @@ SWIGEXPORT(void) Init_layout(void) {
5304
5534
  rb_define_method(cFXDockSite.klass, "contains", VALUEFUNC(_wrap_FXDockSite_contains), -1);
5305
5535
  rb_define_method(cFXDockSite.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXDockSite_doesSaveUnder), -1);
5306
5536
  rb_define_method(cFXDockSite.klass, "setBackColor", VALUEFUNC(_wrap_FXDockSite_setBackColor), -1);
5537
+ rb_define_method(cFXDockSite.klass, "tr", VALUEFUNC(_wrap_FXDockSite_tr), -1);
5538
+ rb_define_method(cFXDockSite.klass, "dropEnable", VALUEFUNC(_wrap_FXDockSite_dropEnable), -1);
5539
+ rb_define_method(cFXDockSite.klass, "dropDisable", VALUEFUNC(_wrap_FXDockSite_dropDisable), -1);
5307
5540
  rb_define_method(cFXDockSite.klass, "setShape", VALUEFUNC(_wrap_FXDockSite_setShape), -1);
5308
5541
  rb_define_method(cFXDockSite.klass, "clearShape", VALUEFUNC(_wrap_FXDockSite_clearShape), -1);
5309
5542
  rb_define_method(cFXDockSite.klass, "moveToolBar", VALUEFUNC(_wrap_FXDockSite_moveToolBar), -1);
@@ -5350,6 +5583,9 @@ SWIGEXPORT(void) Init_layout(void) {
5350
5583
  rb_define_method(cFXSpring.klass, "contains", VALUEFUNC(_wrap_FXSpring_contains), -1);
5351
5584
  rb_define_method(cFXSpring.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXSpring_doesSaveUnder), -1);
5352
5585
  rb_define_method(cFXSpring.klass, "setBackColor", VALUEFUNC(_wrap_FXSpring_setBackColor), -1);
5586
+ rb_define_method(cFXSpring.klass, "tr", VALUEFUNC(_wrap_FXSpring_tr), -1);
5587
+ rb_define_method(cFXSpring.klass, "dropEnable", VALUEFUNC(_wrap_FXSpring_dropEnable), -1);
5588
+ rb_define_method(cFXSpring.klass, "dropDisable", VALUEFUNC(_wrap_FXSpring_dropDisable), -1);
5353
5589
  rb_define_method(cFXSpring.klass, "setShape", VALUEFUNC(_wrap_FXSpring_setShape), -1);
5354
5590
  rb_define_method(cFXSpring.klass, "clearShape", VALUEFUNC(_wrap_FXSpring_clearShape), -1);
5355
5591
  cFXSpring.mark = (void (*)(void *)) FXRbSpring::markfunc;
@@ -5389,6 +5625,9 @@ SWIGEXPORT(void) Init_layout(void) {
5389
5625
  rb_define_method(cFXHorizontalFrame.klass, "contains", VALUEFUNC(_wrap_FXHorizontalFrame_contains), -1);
5390
5626
  rb_define_method(cFXHorizontalFrame.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXHorizontalFrame_doesSaveUnder), -1);
5391
5627
  rb_define_method(cFXHorizontalFrame.klass, "setBackColor", VALUEFUNC(_wrap_FXHorizontalFrame_setBackColor), -1);
5628
+ rb_define_method(cFXHorizontalFrame.klass, "tr", VALUEFUNC(_wrap_FXHorizontalFrame_tr), -1);
5629
+ rb_define_method(cFXHorizontalFrame.klass, "dropEnable", VALUEFUNC(_wrap_FXHorizontalFrame_dropEnable), -1);
5630
+ rb_define_method(cFXHorizontalFrame.klass, "dropDisable", VALUEFUNC(_wrap_FXHorizontalFrame_dropDisable), -1);
5392
5631
  rb_define_method(cFXHorizontalFrame.klass, "setShape", VALUEFUNC(_wrap_FXHorizontalFrame_setShape), -1);
5393
5632
  rb_define_method(cFXHorizontalFrame.klass, "clearShape", VALUEFUNC(_wrap_FXHorizontalFrame_clearShape), -1);
5394
5633
  cFXHorizontalFrame.mark = (void (*)(void *)) FXRbHorizontalFrame::markfunc;
@@ -5431,6 +5670,9 @@ SWIGEXPORT(void) Init_layout(void) {
5431
5670
  rb_define_method(cFXVerticalFrame.klass, "contains", VALUEFUNC(_wrap_FXVerticalFrame_contains), -1);
5432
5671
  rb_define_method(cFXVerticalFrame.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXVerticalFrame_doesSaveUnder), -1);
5433
5672
  rb_define_method(cFXVerticalFrame.klass, "setBackColor", VALUEFUNC(_wrap_FXVerticalFrame_setBackColor), -1);
5673
+ rb_define_method(cFXVerticalFrame.klass, "tr", VALUEFUNC(_wrap_FXVerticalFrame_tr), -1);
5674
+ rb_define_method(cFXVerticalFrame.klass, "dropEnable", VALUEFUNC(_wrap_FXVerticalFrame_dropEnable), -1);
5675
+ rb_define_method(cFXVerticalFrame.klass, "dropDisable", VALUEFUNC(_wrap_FXVerticalFrame_dropDisable), -1);
5434
5676
  rb_define_method(cFXVerticalFrame.klass, "setShape", VALUEFUNC(_wrap_FXVerticalFrame_setShape), -1);
5435
5677
  rb_define_method(cFXVerticalFrame.klass, "clearShape", VALUEFUNC(_wrap_FXVerticalFrame_clearShape), -1);
5436
5678
  cFXVerticalFrame.mark = (void (*)(void *)) FXRbVerticalFrame::markfunc;
@@ -5488,6 +5730,9 @@ SWIGEXPORT(void) Init_layout(void) {
5488
5730
  rb_define_method(cFXMatrix.klass, "contains", VALUEFUNC(_wrap_FXMatrix_contains), -1);
5489
5731
  rb_define_method(cFXMatrix.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXMatrix_doesSaveUnder), -1);
5490
5732
  rb_define_method(cFXMatrix.klass, "setBackColor", VALUEFUNC(_wrap_FXMatrix_setBackColor), -1);
5733
+ rb_define_method(cFXMatrix.klass, "tr", VALUEFUNC(_wrap_FXMatrix_tr), -1);
5734
+ rb_define_method(cFXMatrix.klass, "dropEnable", VALUEFUNC(_wrap_FXMatrix_dropEnable), -1);
5735
+ rb_define_method(cFXMatrix.klass, "dropDisable", VALUEFUNC(_wrap_FXMatrix_dropDisable), -1);
5491
5736
  rb_define_method(cFXMatrix.klass, "setShape", VALUEFUNC(_wrap_FXMatrix_setShape), -1);
5492
5737
  rb_define_method(cFXMatrix.klass, "clearShape", VALUEFUNC(_wrap_FXMatrix_clearShape), -1);
5493
5738
  cFXMatrix.mark = (void (*)(void *)) FXRbMatrix::markfunc;
@@ -5502,6 +5747,9 @@ SWIGEXPORT(void) Init_layout(void) {
5502
5747
  rb_define_alloc_func(cFXGroupBox.klass, _wrap_FXGroupBox_allocate);
5503
5748
  rb_define_method(cFXGroupBox.klass, "initialize", VALUEFUNC(_wrap_new_FXGroupBox), -1);
5504
5749
  rb_define_method(cFXGroupBox.klass, "onPaint", VALUEFUNC(_wrap_FXGroupBox_onPaint), -1);
5750
+ rb_define_method(cFXGroupBox.klass, "onCmdSetValue", VALUEFUNC(_wrap_FXGroupBox_onCmdSetValue), -1);
5751
+ rb_define_method(cFXGroupBox.klass, "onCmdSetStringValue", VALUEFUNC(_wrap_FXGroupBox_onCmdSetStringValue), -1);
5752
+ rb_define_method(cFXGroupBox.klass, "onCmdGetStringValue", VALUEFUNC(_wrap_FXGroupBox_onCmdGetStringValue), -1);
5505
5753
  rb_define_method(cFXGroupBox.klass, "setText", VALUEFUNC(_wrap_FXGroupBox_setText), -1);
5506
5754
  rb_define_method(cFXGroupBox.klass, "getText", VALUEFUNC(_wrap_FXGroupBox_getText), -1);
5507
5755
  rb_define_method(cFXGroupBox.klass, "setGroupBoxStyle", VALUEFUNC(_wrap_FXGroupBox_setGroupBoxStyle), -1);
@@ -5540,6 +5788,9 @@ SWIGEXPORT(void) Init_layout(void) {
5540
5788
  rb_define_method(cFXGroupBox.klass, "contains", VALUEFUNC(_wrap_FXGroupBox_contains), -1);
5541
5789
  rb_define_method(cFXGroupBox.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXGroupBox_doesSaveUnder), -1);
5542
5790
  rb_define_method(cFXGroupBox.klass, "setBackColor", VALUEFUNC(_wrap_FXGroupBox_setBackColor), -1);
5791
+ rb_define_method(cFXGroupBox.klass, "tr", VALUEFUNC(_wrap_FXGroupBox_tr), -1);
5792
+ rb_define_method(cFXGroupBox.klass, "dropEnable", VALUEFUNC(_wrap_FXGroupBox_dropEnable), -1);
5793
+ rb_define_method(cFXGroupBox.klass, "dropDisable", VALUEFUNC(_wrap_FXGroupBox_dropDisable), -1);
5543
5794
  rb_define_method(cFXGroupBox.klass, "setShape", VALUEFUNC(_wrap_FXGroupBox_setShape), -1);
5544
5795
  rb_define_method(cFXGroupBox.klass, "clearShape", VALUEFUNC(_wrap_FXGroupBox_clearShape), -1);
5545
5796
  cFXGroupBox.mark = (void (*)(void *)) FXRbGroupBox::markfunc;
@@ -5603,6 +5854,9 @@ SWIGEXPORT(void) Init_layout(void) {
5603
5854
  rb_define_method(cFXSwitcher.klass, "contains", VALUEFUNC(_wrap_FXSwitcher_contains), -1);
5604
5855
  rb_define_method(cFXSwitcher.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXSwitcher_doesSaveUnder), -1);
5605
5856
  rb_define_method(cFXSwitcher.klass, "setBackColor", VALUEFUNC(_wrap_FXSwitcher_setBackColor), -1);
5857
+ rb_define_method(cFXSwitcher.klass, "tr", VALUEFUNC(_wrap_FXSwitcher_tr), -1);
5858
+ rb_define_method(cFXSwitcher.klass, "dropEnable", VALUEFUNC(_wrap_FXSwitcher_dropEnable), -1);
5859
+ rb_define_method(cFXSwitcher.klass, "dropDisable", VALUEFUNC(_wrap_FXSwitcher_dropDisable), -1);
5606
5860
  rb_define_method(cFXSwitcher.klass, "setShape", VALUEFUNC(_wrap_FXSwitcher_setShape), -1);
5607
5861
  rb_define_method(cFXSwitcher.klass, "clearShape", VALUEFUNC(_wrap_FXSwitcher_clearShape), -1);
5608
5862
  cFXSwitcher.mark = (void (*)(void *)) FXRbSwitcher::markfunc;
@@ -5653,6 +5907,9 @@ SWIGEXPORT(void) Init_layout(void) {
5653
5907
  rb_define_method(cFXShutterItem.klass, "contains", VALUEFUNC(_wrap_FXShutterItem_contains), -1);
5654
5908
  rb_define_method(cFXShutterItem.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXShutterItem_doesSaveUnder), -1);
5655
5909
  rb_define_method(cFXShutterItem.klass, "setBackColor", VALUEFUNC(_wrap_FXShutterItem_setBackColor), -1);
5910
+ rb_define_method(cFXShutterItem.klass, "tr", VALUEFUNC(_wrap_FXShutterItem_tr), -1);
5911
+ rb_define_method(cFXShutterItem.klass, "dropEnable", VALUEFUNC(_wrap_FXShutterItem_dropEnable), -1);
5912
+ rb_define_method(cFXShutterItem.klass, "dropDisable", VALUEFUNC(_wrap_FXShutterItem_dropDisable), -1);
5656
5913
  rb_define_method(cFXShutterItem.klass, "setShape", VALUEFUNC(_wrap_FXShutterItem_setShape), -1);
5657
5914
  rb_define_method(cFXShutterItem.klass, "clearShape", VALUEFUNC(_wrap_FXShutterItem_clearShape), -1);
5658
5915
  cFXShutterItem.mark = (void (*)(void *)) FXRbShutterItem::markfunc;
@@ -5707,6 +5964,9 @@ SWIGEXPORT(void) Init_layout(void) {
5707
5964
  rb_define_method(cFXShutter.klass, "contains", VALUEFUNC(_wrap_FXShutter_contains), -1);
5708
5965
  rb_define_method(cFXShutter.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXShutter_doesSaveUnder), -1);
5709
5966
  rb_define_method(cFXShutter.klass, "setBackColor", VALUEFUNC(_wrap_FXShutter_setBackColor), -1);
5967
+ rb_define_method(cFXShutter.klass, "tr", VALUEFUNC(_wrap_FXShutter_tr), -1);
5968
+ rb_define_method(cFXShutter.klass, "dropEnable", VALUEFUNC(_wrap_FXShutter_dropEnable), -1);
5969
+ rb_define_method(cFXShutter.klass, "dropDisable", VALUEFUNC(_wrap_FXShutter_dropDisable), -1);
5710
5970
  rb_define_method(cFXShutter.klass, "setShape", VALUEFUNC(_wrap_FXShutter_setShape), -1);
5711
5971
  rb_define_method(cFXShutter.klass, "clearShape", VALUEFUNC(_wrap_FXShutter_clearShape), -1);
5712
5972
  rb_define_method(cFXShutter.klass, "setCurrent", VALUEFUNC(_wrap_FXShutter_setCurrent), -1);
@@ -5767,6 +6027,9 @@ SWIGEXPORT(void) Init_layout(void) {
5767
6027
  rb_define_method(cFXSplitter.klass, "contains", VALUEFUNC(_wrap_FXSplitter_contains), -1);
5768
6028
  rb_define_method(cFXSplitter.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXSplitter_doesSaveUnder), -1);
5769
6029
  rb_define_method(cFXSplitter.klass, "setBackColor", VALUEFUNC(_wrap_FXSplitter_setBackColor), -1);
6030
+ rb_define_method(cFXSplitter.klass, "tr", VALUEFUNC(_wrap_FXSplitter_tr), -1);
6031
+ rb_define_method(cFXSplitter.klass, "dropEnable", VALUEFUNC(_wrap_FXSplitter_dropEnable), -1);
6032
+ rb_define_method(cFXSplitter.klass, "dropDisable", VALUEFUNC(_wrap_FXSplitter_dropDisable), -1);
5770
6033
  rb_define_method(cFXSplitter.klass, "setShape", VALUEFUNC(_wrap_FXSplitter_setShape), -1);
5771
6034
  rb_define_method(cFXSplitter.klass, "clearShape", VALUEFUNC(_wrap_FXSplitter_clearShape), -1);
5772
6035
  cFXSplitter.mark = (void (*)(void *)) FXRbSplitter::markfunc;
@@ -5787,11 +6050,26 @@ SWIGEXPORT(void) Init_layout(void) {
5787
6050
  rb_define_method(cFX4Splitter.klass, "onFocusRight", VALUEFUNC(_wrap_FX4Splitter_onFocusRight), -1);
5788
6051
  rb_define_method(cFX4Splitter.klass, "onCmdExpand", VALUEFUNC(_wrap_FX4Splitter_onCmdExpand), -1);
5789
6052
  rb_define_method(cFX4Splitter.klass, "onUpdExpand", VALUEFUNC(_wrap_FX4Splitter_onUpdExpand), -1);
5790
- rb_define_const(cFX4Splitter.klass,"ID_EXPAND_ALL", INT2NUM(FX4Splitter::ID_EXPAND_ALL));
6053
+ rb_define_const(cFX4Splitter.klass,"ExpandNone", INT2NUM(FX4Splitter::ExpandNone));
6054
+ rb_define_const(cFX4Splitter.klass,"ExpandTopLeft", INT2NUM(FX4Splitter::ExpandTopLeft));
6055
+ rb_define_const(cFX4Splitter.klass,"ExpandTopRight", INT2NUM(FX4Splitter::ExpandTopRight));
6056
+ rb_define_const(cFX4Splitter.klass,"ExpandBottomLeft", INT2NUM(FX4Splitter::ExpandBottomLeft));
6057
+ rb_define_const(cFX4Splitter.klass,"ExpandBottomRight", INT2NUM(FX4Splitter::ExpandBottomRight));
6058
+ rb_define_const(cFX4Splitter.klass,"ExpandTop", INT2NUM(FX4Splitter::ExpandTop));
6059
+ rb_define_const(cFX4Splitter.klass,"ExpandBottom", INT2NUM(FX4Splitter::ExpandBottom));
6060
+ rb_define_const(cFX4Splitter.klass,"ExpandLeft", INT2NUM(FX4Splitter::ExpandLeft));
6061
+ rb_define_const(cFX4Splitter.klass,"ExpandRight", INT2NUM(FX4Splitter::ExpandRight));
6062
+ rb_define_const(cFX4Splitter.klass,"ExpandAll", INT2NUM(FX4Splitter::ExpandAll));
6063
+ rb_define_const(cFX4Splitter.klass,"ID_EXPAND_NONE", INT2NUM(FX4Splitter::ID_EXPAND_NONE));
6064
+ rb_define_const(cFX4Splitter.klass,"ID_EXPAND_TOP", INT2NUM(FX4Splitter::ID_EXPAND_TOP));
6065
+ rb_define_const(cFX4Splitter.klass,"ID_EXPAND_BOTTOM", INT2NUM(FX4Splitter::ID_EXPAND_BOTTOM));
6066
+ rb_define_const(cFX4Splitter.klass,"ID_EXPAND_LEFT", INT2NUM(FX4Splitter::ID_EXPAND_LEFT));
6067
+ rb_define_const(cFX4Splitter.klass,"ID_EXPAND_RIGHT", INT2NUM(FX4Splitter::ID_EXPAND_RIGHT));
5791
6068
  rb_define_const(cFX4Splitter.klass,"ID_EXPAND_TOPLEFT", INT2NUM(FX4Splitter::ID_EXPAND_TOPLEFT));
5792
6069
  rb_define_const(cFX4Splitter.klass,"ID_EXPAND_TOPRIGHT", INT2NUM(FX4Splitter::ID_EXPAND_TOPRIGHT));
5793
6070
  rb_define_const(cFX4Splitter.klass,"ID_EXPAND_BOTTOMLEFT", INT2NUM(FX4Splitter::ID_EXPAND_BOTTOMLEFT));
5794
6071
  rb_define_const(cFX4Splitter.klass,"ID_EXPAND_BOTTOMRIGHT", INT2NUM(FX4Splitter::ID_EXPAND_BOTTOMRIGHT));
6072
+ rb_define_const(cFX4Splitter.klass,"ID_EXPAND_ALL", INT2NUM(FX4Splitter::ID_EXPAND_ALL));
5795
6073
  rb_define_const(cFX4Splitter.klass,"ID_LAST", INT2NUM(FX4Splitter::ID_LAST));
5796
6074
  rb_define_method(cFX4Splitter.klass, "getTopLeft", VALUEFUNC(_wrap_FX4Splitter_getTopLeft), -1);
5797
6075
  rb_define_method(cFX4Splitter.klass, "getTopRight", VALUEFUNC(_wrap_FX4Splitter_getTopRight), -1);
@@ -5837,6 +6115,9 @@ SWIGEXPORT(void) Init_layout(void) {
5837
6115
  rb_define_method(cFX4Splitter.klass, "contains", VALUEFUNC(_wrap_FX4Splitter_contains), -1);
5838
6116
  rb_define_method(cFX4Splitter.klass, "doesSaveUnder", VALUEFUNC(_wrap_FX4Splitter_doesSaveUnder), -1);
5839
6117
  rb_define_method(cFX4Splitter.klass, "setBackColor", VALUEFUNC(_wrap_FX4Splitter_setBackColor), -1);
6118
+ rb_define_method(cFX4Splitter.klass, "tr", VALUEFUNC(_wrap_FX4Splitter_tr), -1);
6119
+ rb_define_method(cFX4Splitter.klass, "dropEnable", VALUEFUNC(_wrap_FX4Splitter_dropEnable), -1);
6120
+ rb_define_method(cFX4Splitter.klass, "dropDisable", VALUEFUNC(_wrap_FX4Splitter_dropDisable), -1);
5840
6121
  rb_define_method(cFX4Splitter.klass, "setShape", VALUEFUNC(_wrap_FX4Splitter_setShape), -1);
5841
6122
  rb_define_method(cFX4Splitter.klass, "clearShape", VALUEFUNC(_wrap_FX4Splitter_clearShape), -1);
5842
6123
  cFX4Splitter.mark = (void (*)(void *)) FXRb4Splitter::markfunc;
@@ -5881,6 +6162,9 @@ SWIGEXPORT(void) Init_layout(void) {
5881
6162
  rb_define_method(cFXStatusBar.klass, "contains", VALUEFUNC(_wrap_FXStatusBar_contains), -1);
5882
6163
  rb_define_method(cFXStatusBar.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXStatusBar_doesSaveUnder), -1);
5883
6164
  rb_define_method(cFXStatusBar.klass, "setBackColor", VALUEFUNC(_wrap_FXStatusBar_setBackColor), -1);
6165
+ rb_define_method(cFXStatusBar.klass, "tr", VALUEFUNC(_wrap_FXStatusBar_tr), -1);
6166
+ rb_define_method(cFXStatusBar.klass, "dropEnable", VALUEFUNC(_wrap_FXStatusBar_dropEnable), -1);
6167
+ rb_define_method(cFXStatusBar.klass, "dropDisable", VALUEFUNC(_wrap_FXStatusBar_dropDisable), -1);
5884
6168
  rb_define_method(cFXStatusBar.klass, "setShape", VALUEFUNC(_wrap_FXStatusBar_setShape), -1);
5885
6169
  rb_define_method(cFXStatusBar.klass, "clearShape", VALUEFUNC(_wrap_FXStatusBar_clearShape), -1);
5886
6170
  cFXStatusBar.mark = (void (*)(void *)) FXRbStatusBar::markfunc;
@@ -5946,6 +6230,9 @@ SWIGEXPORT(void) Init_layout(void) {
5946
6230
  rb_define_method(cFXScrollArea.klass, "contains", VALUEFUNC(_wrap_FXScrollArea_contains), -1);
5947
6231
  rb_define_method(cFXScrollArea.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXScrollArea_doesSaveUnder), -1);
5948
6232
  rb_define_method(cFXScrollArea.klass, "setBackColor", VALUEFUNC(_wrap_FXScrollArea_setBackColor), -1);
6233
+ rb_define_method(cFXScrollArea.klass, "tr", VALUEFUNC(_wrap_FXScrollArea_tr), -1);
6234
+ rb_define_method(cFXScrollArea.klass, "dropEnable", VALUEFUNC(_wrap_FXScrollArea_dropEnable), -1);
6235
+ rb_define_method(cFXScrollArea.klass, "dropDisable", VALUEFUNC(_wrap_FXScrollArea_dropDisable), -1);
5949
6236
  rb_define_method(cFXScrollArea.klass, "setShape", VALUEFUNC(_wrap_FXScrollArea_setShape), -1);
5950
6237
  rb_define_method(cFXScrollArea.klass, "clearShape", VALUEFUNC(_wrap_FXScrollArea_clearShape), -1);
5951
6238
  rb_define_method(cFXScrollArea.klass, "getViewportHeight", VALUEFUNC(_wrap_FXScrollArea_getViewportHeight), -1);
@@ -5996,6 +6283,9 @@ SWIGEXPORT(void) Init_layout(void) {
5996
6283
  rb_define_method(cFXScrollWindow.klass, "contains", VALUEFUNC(_wrap_FXScrollWindow_contains), -1);
5997
6284
  rb_define_method(cFXScrollWindow.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXScrollWindow_doesSaveUnder), -1);
5998
6285
  rb_define_method(cFXScrollWindow.klass, "setBackColor", VALUEFUNC(_wrap_FXScrollWindow_setBackColor), -1);
6286
+ rb_define_method(cFXScrollWindow.klass, "tr", VALUEFUNC(_wrap_FXScrollWindow_tr), -1);
6287
+ rb_define_method(cFXScrollWindow.klass, "dropEnable", VALUEFUNC(_wrap_FXScrollWindow_dropEnable), -1);
6288
+ rb_define_method(cFXScrollWindow.klass, "dropDisable", VALUEFUNC(_wrap_FXScrollWindow_dropDisable), -1);
5999
6289
  rb_define_method(cFXScrollWindow.klass, "setShape", VALUEFUNC(_wrap_FXScrollWindow_setShape), -1);
6000
6290
  rb_define_method(cFXScrollWindow.klass, "clearShape", VALUEFUNC(_wrap_FXScrollWindow_clearShape), -1);
6001
6291
  rb_define_method(cFXScrollWindow.klass, "getViewportHeight", VALUEFUNC(_wrap_FXScrollWindow_getViewportHeight), -1);