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
File without changes
@@ -516,20 +516,23 @@ SWIGIMPORT(void) SWIG_Ruby_ConvertPacked(VALUE obj, void *ptr, int sz, swig_ty
516
516
 
517
517
  /* -------- TYPES TABLE (BEGIN) -------- */
518
518
 
519
- #define SWIGTYPE_p_FXId swig_types[0]
520
- #define SWIGTYPE_p_FXIcon swig_types[1]
521
- #define SWIGTYPE_p_FXComposite swig_types[2]
519
+ #define SWIGTYPE_p_FXObject swig_types[0]
520
+ #define SWIGTYPE_p_FXColorList swig_types[1]
521
+ #define SWIGTYPE_p_FXScrollArea swig_types[2]
522
522
  #define SWIGTYPE_p_FXWindow swig_types[3]
523
- #define SWIGTYPE_p_FXList swig_types[4]
524
- #define SWIGTYPE_p_FXFont swig_types[5]
525
- #define SWIGTYPE_p_FXObject swig_types[6]
526
- #define SWIGTYPE_p_FXDrawable swig_types[7]
527
- #define SWIGTYPE_p_FXScrollArea swig_types[8]
528
- #define SWIGTYPE_p_FXListItem swig_types[9]
529
- #define SWIGTYPE_p_FXRegion swig_types[10]
530
- #define SWIGTYPE_p_FXBitmap swig_types[11]
531
- #define SWIGTYPE_p_FXStream swig_types[12]
532
- static swig_type_info *swig_types[14];
523
+ #define SWIGTYPE_p_FXComposite swig_types[4]
524
+ #define SWIGTYPE_p_FXBitmap swig_types[5]
525
+ #define SWIGTYPE_p_FXColorItem swig_types[6]
526
+ #define SWIGTYPE_p_FXFont swig_types[7]
527
+ #define SWIGTYPE_p_FXId swig_types[8]
528
+ #define SWIGTYPE_p_FXStream swig_types[9]
529
+ #define SWIGTYPE_p_FXDrawable swig_types[10]
530
+ #define SWIGTYPE_p_FXList swig_types[11]
531
+ #define SWIGTYPE_p_FXIcon swig_types[12]
532
+ #define SWIGTYPE_p_FXColor swig_types[13]
533
+ #define SWIGTYPE_p_FXRegion swig_types[14]
534
+ #define SWIGTYPE_p_FXListItem swig_types[15]
535
+ static swig_type_info *swig_types[17];
533
536
 
534
537
  /* -------- TYPES TABLE (END) -------- */
535
538
 
@@ -604,6 +607,17 @@ VALUE FXListItem_getData(FXListItem const *self){
604
607
 
605
608
  swig_class cFXListItem;
606
609
  static void free_FXListItem(FXListItem *);
610
+
611
+ static swig_type_info *FXListItem_dynamic_cast(void **ptr) {
612
+ FXListItem **ppListItem = reinterpret_cast<FXListItem **>(ptr);
613
+ FXColorItem *pColorItem=dynamic_cast<FXColorItem*>(*ppListItem);
614
+ if(pColorItem){
615
+ *ptr=reinterpret_cast<void*>(pColorItem);
616
+ return SWIG_TypeQuery("FXColorItem *");
617
+ }
618
+ return 0;
619
+ }
620
+
607
621
  FXList *new_FXList(FXComposite *p,FXObject *tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h){
608
622
  return new FXRbList(p,tgt,sel,opts,x,y,w,h);
609
623
  }
@@ -697,6 +711,37 @@ VALUE FXList_position__SWIG_1(FXList const *self){
697
711
 
698
712
  swig_class cFXList;
699
713
  static void free_FXList(FXList *);
714
+
715
+ static swig_type_info *FXList_dynamic_cast(void **ptr) {
716
+ FXList **ppList = reinterpret_cast<FXList **>(ptr);
717
+ FXColorList *pColorList=dynamic_cast<FXColorList*>(*ppList);
718
+ if(pColorList){
719
+ *ptr=reinterpret_cast<void*>(pColorList);
720
+ return SWIG_TypeQuery("FXColorList *");
721
+ }
722
+ return 0;
723
+ }
724
+
725
+ FXColorItem *new_FXColorItem(FXString const &text,FXColor clr,void *ptr){
726
+ return new FXRbColorItem(text,clr,ptr);
727
+ }
728
+
729
+ swig_class cFXColorItem;
730
+ static void free_FXColorItem(FXColorItem *);
731
+ FXColorList *new_FXColorList(FXComposite *p,FXObject *tgt,FXSelector sel,FXuint opts,FXint x,FXint y,FXint w,FXint h){
732
+ return new FXRbColorList(p,tgt,sel,opts,x,y,w,h);
733
+ }
734
+ VALUE FXColorList_position__SWIG_1(FXColorList const *self){
735
+ FXint x, y;
736
+ self->getPosition(x, y);
737
+ VALUE pos = rb_ary_new();
738
+ rb_ary_push(pos, INT2NUM(x));
739
+ rb_ary_push(pos, INT2NUM(y));
740
+ return pos;
741
+ }
742
+
743
+ swig_class cFXColorList;
744
+ static void free_FXColorList(FXColorList *);
700
745
  #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
701
746
  static VALUE _wrap_FXListItem_allocate(VALUE self) {
702
747
  #else
@@ -1195,6 +1240,14 @@ static VALUE _wrap_FXList_moveItem(int argc, VALUE *argv, VALUE self) { FXList *
1195
1240
  if (arg2 < 0 || arg2 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list item index out of bounds"); } } {
1196
1241
  if (arg3 < 0 || arg3 >= arg1->getNumItems()) { rb_raise(rb_eIndexError, "list item index out of bounds"); } }
1197
1242
  result = (FXint)(arg1)->moveItem(arg2,arg3,arg4); vresult = INT2NUM(result); return vresult; }
1243
+ static VALUE _wrap_FXList_extractItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1244
+ FXbool arg3 = (FXbool) 0 ; FXListItem *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1245
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1246
+ arg2 = NUM2INT(argv[0]); if (argc > 1) { arg3 = to_FXbool(argv[1]); } { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1247
+ rb_raise(rb_eIndexError, "list item index out of bounds"); } }
1248
+ result = (FXListItem *)(arg1)->extractItem(arg2,arg3); {
1249
+ swig_type_info *ty = SWIG_TypeDynamicCast(SWIGTYPE_p_FXListItem, (void **) &result);
1250
+ vresult = FXRbGetRubyObj(result, ty); } return vresult; }
1198
1251
  static VALUE _wrap_FXList_removeItem(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ;
1199
1252
  FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1200
1253
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
@@ -1420,9 +1473,9 @@ static VALUE _wrap_FXList_getHeightForWidth(int argc, VALUE *argv, VALUE self) {
1420
1473
  FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1421
1474
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1422
1475
  arg2 = NUM2INT(argv[0]); result = (FXint)FXList_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1423
- static VALUE _wrap_FXList_canFocus(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXbool result;
1476
+ static VALUE _wrap_FXList_canFocus(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; bool result;
1424
1477
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1425
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (FXbool)FXList_canFocus((FXList const *)arg1);
1478
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (bool)FXList_canFocus((FXList const *)arg1);
1426
1479
  vresult = result ? Qtrue : Qfalse; return vresult; }
1427
1480
  static VALUE _wrap_FXList_setFocus(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1428
1481
  if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
@@ -1476,23 +1529,35 @@ static VALUE _wrap_FXList_show(int argc, VALUE *argv, VALUE self) { FXList *arg1
1476
1529
  static VALUE _wrap_FXList_hide(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; if ((argc < 0) || (argc > 0))
1477
1530
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1478
1531
  FXList_hide(arg1); return Qnil; }
1479
- static VALUE _wrap_FXList_isComposite(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXbool result;
1532
+ static VALUE _wrap_FXList_isComposite(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; bool result;
1480
1533
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1481
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (FXbool)FXList_isComposite((FXList const *)arg1);
1534
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (bool)FXList_isComposite((FXList const *)arg1);
1482
1535
  vresult = result ? Qtrue : Qfalse; return vresult; }
1483
1536
  static VALUE _wrap_FXList_contains(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXint arg2 ; FXint arg3 ;
1484
- FXbool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1537
+ bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1485
1538
  rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1486
- arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); result = (FXbool)FXList_contains((FXList const *)arg1,arg2,arg3);
1539
+ arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]); result = (bool)FXList_contains((FXList const *)arg1,arg2,arg3);
1487
1540
  vresult = result ? Qtrue : Qfalse; return vresult; }
1488
- static VALUE _wrap_FXList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXbool result;
1541
+ static VALUE _wrap_FXList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; bool result;
1489
1542
  VALUE vresult = Qnil; if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1490
- SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (FXbool)FXList_doesSaveUnder((FXList const *)arg1);
1543
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); result = (bool)FXList_doesSaveUnder((FXList const *)arg1);
1491
1544
  vresult = result ? Qtrue : Qfalse; return vresult; }
1492
1545
  static VALUE _wrap_FXList_setBackColor(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXColor arg2 ;
1493
1546
  if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1494
1547
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); arg2 = to_FXColor(argv[0]); FXList_setBackColor(arg1,arg2);
1495
1548
  return Qnil; }
1549
+ static VALUE _wrap_FXList_tr(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ; FXchar *arg2 ;
1550
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1551
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
1552
+ arg2 = StringValuePtr(argv[0]); if (argc > 1) { arg3 = StringValuePtr(argv[1]); }
1553
+ result = (FXchar *)FXList_tr((FXList const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3); vresult = rb_str_new2(result);
1554
+ return vresult; }
1555
+ static VALUE _wrap_FXList_dropEnable(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1556
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1557
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); FXList_dropEnable(arg1); return Qnil; }
1558
+ static VALUE _wrap_FXList_dropDisable(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1559
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1560
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1); FXList_dropDisable(arg1); return Qnil; }
1496
1561
  static VALUE _wrap_FXList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXList *arg1 = (FXList *) 0 ;
1497
1562
  FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1498
1563
  SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXList, 1);
@@ -1626,6 +1691,426 @@ static VALUE _wrap_FXList_setCurrentItem(int argc, VALUE *argv, VALUE self) { FX
1626
1691
  arg3 = to_FXbool(argv[1]); } { if (arg2 < 0 || arg2 >= arg1->getNumItems()) {
1627
1692
  rb_raise(rb_eIndexError, "list item index out of bounds"); } } FXList_setCurrentItem(arg1,arg2,arg3);
1628
1693
  return Qnil; }
1694
+ #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
1695
+ static VALUE _wrap_FXColorItem_allocate(VALUE self) {
1696
+ #else
1697
+ static VALUE _wrap_FXColorItem_allocate(int argc, VALUE *argv, VALUE self) {
1698
+ #endif
1699
+ VALUE vresult = SWIG_NewClassInstance(self, SWIGTYPE_p_FXColorItem);
1700
+ #ifndef HAVE_RB_DEFINE_ALLOC_FUNC
1701
+ rb_obj_call_init(vresult, argc, argv);
1702
+ #endif
1703
+ return vresult; }
1704
+ static VALUE _wrap_new_FXColorItem(int argc, VALUE *argv, VALUE self) { FXString *arg1 = 0 ; FXColor arg2 ;
1705
+ void *arg3 = (void *) 0 ; FXColorItem *result; SwigValueWrapper<FXString > p1 ; if ((argc < 2) || (argc > 3))
1706
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); p1 = to_FXString(argv[0]); arg1 = &p1;
1707
+ arg2 = to_FXColor(argv[1]); if (argc > 2) { SWIG_ConvertPtr(argv[2], (void **) &arg3, 0, 1); } {
1708
+ result = (FXColorItem *)new_FXColorItem((FXString const &)*arg1,arg2,arg3);
1709
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1710
+ static VALUE _wrap_FXColorItem_colore___(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1711
+ FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1712
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); arg2 = to_FXColor(argv[0]); (arg1)->setColor(arg2);
1713
+ return Qnil; }
1714
+ static VALUE _wrap_FXColorItem_color(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1715
+ FXColor result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1716
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1717
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1);
1718
+ result = (FXColor)((FXColorItem const *)arg1)->getColor(); vresult = UINT2NUM(result); return vresult; }
1719
+ static void
1720
+ free_FXColorItem(FXColorItem *arg1) {
1721
+ delete arg1;
1722
+ }
1723
+ static VALUE _wrap_FXColorItem_save(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1724
+ FXStream *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1725
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1);
1726
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXStream, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
1727
+ FXColorItem_save((FXColorItem const *)arg1,*arg2); return Qnil; }
1728
+ static VALUE _wrap_FXColorItem_load(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1729
+ FXStream *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1730
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1);
1731
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXStream, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
1732
+ FXColorItem_load(arg1,*arg2); return Qnil; }
1733
+ static VALUE _wrap_FXColorItem_setText(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1734
+ FXString *arg2 = 0 ; SwigValueWrapper<FXString > p2 ; if ((argc < 1) || (argc > 1))
1735
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1736
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); p2 = to_FXString(argv[0]); arg2 = &p2;
1737
+ FXColorItem_setText(arg1,(FXString const &)*arg2); return Qnil; }
1738
+ static VALUE _wrap_FXColorItem_setIcon(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1739
+ FXIcon *arg2 = (FXIcon *) 0 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
1740
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1741
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1);
1742
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); if (argc > 1) { arg3 = to_FXbool(argv[1]); }
1743
+ FXColorItem_setIcon(arg1,arg2,arg3); return Qnil; }
1744
+ static VALUE _wrap_FXColorItem_setFocus(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1745
+ FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1746
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); arg2 = to_FXbool(argv[0]);
1747
+ FXColorItem_setFocus(arg1,arg2); return Qnil; }
1748
+ static VALUE _wrap_FXColorItem_setSelected(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1749
+ FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1750
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); arg2 = to_FXbool(argv[0]);
1751
+ FXColorItem_setSelected(arg1,arg2); return Qnil; }
1752
+ static VALUE _wrap_FXColorItem_setEnabled(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1753
+ FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1754
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); arg2 = to_FXbool(argv[0]);
1755
+ FXColorItem_setEnabled(arg1,arg2); return Qnil; }
1756
+ static VALUE _wrap_FXColorItem_setDraggable(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1757
+ FXbool arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1758
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); arg2 = to_FXbool(argv[0]);
1759
+ FXColorItem_setDraggable(arg1,arg2); return Qnil; }
1760
+ static VALUE _wrap_FXColorItem_getWidth(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1761
+ FXList *arg2 = (FXList *) 0 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1762
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1763
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1);
1764
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXList, 1);
1765
+ result = (FXint)FXColorItem_getWidth((FXColorItem const *)arg1,(FXList const *)arg2); vresult = INT2NUM(result);
1766
+ return vresult; }
1767
+ static VALUE _wrap_FXColorItem_getHeight(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1768
+ FXList *arg2 = (FXList *) 0 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1769
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1770
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1);
1771
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXList, 1);
1772
+ result = (FXint)FXColorItem_getHeight((FXColorItem const *)arg1,(FXList const *)arg2); vresult = INT2NUM(result);
1773
+ return vresult; }
1774
+ static VALUE _wrap_FXColorItem_create(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1775
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1776
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); FXColorItem_create(arg1); return Qnil; }
1777
+ static VALUE _wrap_FXColorItem_detach(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1778
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1779
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); FXColorItem_detach(arg1); return Qnil; }
1780
+ static VALUE _wrap_FXColorItem_destroy(int argc, VALUE *argv, VALUE self) { FXColorItem *arg1 = (FXColorItem *) 0 ;
1781
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1782
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorItem, 1); FXColorItem_destroy(arg1); return Qnil; }
1783
+ #ifdef HAVE_RB_DEFINE_ALLOC_FUNC
1784
+ static VALUE _wrap_FXColorList_allocate(VALUE self) {
1785
+ #else
1786
+ static VALUE _wrap_FXColorList_allocate(int argc, VALUE *argv, VALUE self) {
1787
+ #endif
1788
+ VALUE vresult = SWIG_NewClassInstance(self, SWIGTYPE_p_FXColorList);
1789
+ #ifndef HAVE_RB_DEFINE_ALLOC_FUNC
1790
+ rb_obj_call_init(vresult, argc, argv);
1791
+ #endif
1792
+ return vresult; }
1793
+ static VALUE _wrap_new_FXColorList(int argc, VALUE *argv, VALUE self) { FXComposite *arg1 = (FXComposite *) 0 ;
1794
+ FXObject *arg2 = (FXObject *) 0 ; FXSelector arg3 = (FXSelector) 0 ; FXuint arg4 = (FXuint) LIST_BROWSESELECT ;
1795
+ FXint arg5 = (FXint) 0 ; FXint arg6 = (FXint) 0 ; FXint arg7 = (FXint) 0 ; FXint arg8 = (FXint) 0 ; FXColorList *result;
1796
+ if ((argc < 1) || (argc > 8)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1797
+ SWIG_ConvertPtr(argv[0], (void **) &arg1, SWIGTYPE_p_FXComposite, 1); if (argc > 1) {
1798
+ SWIG_ConvertPtr(argv[1], (void **) &arg2, SWIGTYPE_p_FXObject, 1); } if (argc > 2) { arg3 = NUM2UINT(argv[2]); }
1799
+ if (argc > 3) { arg4 = NUM2UINT(argv[3]); } if (argc > 4) { arg5 = NUM2INT(argv[4]); } if (argc > 5) {
1800
+ arg6 = NUM2INT(argv[5]); } if (argc > 6) { arg7 = NUM2INT(argv[6]); } if (argc > 7) { arg8 = NUM2INT(argv[7]); } {
1801
+ result = (FXColorList *)new_FXColorList(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8);
1802
+ DATA_PTR(self) = result; FXRbRegisterRubyObj(self, result); if(rb_block_given_p()){ rb_yield(self); } } return self; }
1803
+ static VALUE _wrap_FXColorList_fillItems(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1804
+ FXchar **arg2 = (FXchar **) 0 ; FXColor *arg3 = (FXColor *) 0 ; void *arg4 = (void *) 0 ; FXbool arg5 = (FXbool) 0 ;
1805
+ FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 4))
1806
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1807
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); { arg2 = NULL; if(!NIL_P(argv[0])){
1808
+ Check_Type(argv[0], T_ARRAY); if (FXMALLOC(&arg2, FXchar *, RARRAY(argv[0])->len)+1) {
1809
+ for (long i = 0; i < RARRAY(argv[0])->len; i++) { arg2[i] = (FXchar *) STR2CSTR(rb_ary_entry(argv[0], i)); }
1810
+ arg2[RARRAY(argv[0])->len] = 0; } } } if (argc > 1) { { arg3 = NULL; if(!NIL_P(argv[1])){
1811
+ Check_Type(argv[1], T_ARRAY); if (FXMALLOC(&arg3, FXColor, RARRAY(argv[1])->len)+1) {
1812
+ for (long i = 0; i < RARRAY(argv[1])->len; i++) {
1813
+ arg3[i] = static_cast<FXColor>(NUM2ULONG(rb_ary_entry(argv[1], i))); } arg3[RARRAY(argv[1])->len] = 0; }
1814
+ } } } if (argc > 2) { SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); } if (argc > 3) {
1815
+ arg5 = to_FXbool(argv[3]); } result = (FXint)(arg1)->fillItems((FXchar const **)arg2,arg3,arg4,arg5);
1816
+ vresult = INT2NUM(result); FXFREE(&arg2); FXFREE(&arg3); return vresult; }
1817
+ static VALUE _wrap_FXColorList_insertItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1818
+ FXint arg2 ; FXString *arg3 = 0 ; FXColor arg4 = (FXColor) 0 ; void *arg5 = (void *) 0 ; FXbool arg6 = (FXbool) 0 ;
1819
+ FXint result; SwigValueWrapper<FXString > p3 ; VALUE vresult = Qnil; if ((argc < 2) || (argc > 5))
1820
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1821
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
1822
+ p3 = to_FXString(argv[1]); arg3 = &p3; if (argc > 2) { arg4 = to_FXColor(argv[2]); } if (argc > 3) {
1823
+ SWIG_ConvertPtr(argv[3], (void **) &arg5, 0, 1); } if (argc > 4) { arg6 = to_FXbool(argv[4]); }
1824
+ result = (FXint)(arg1)->insertItem(arg2,(FXString const &)*arg3,arg4,arg5,arg6); vresult = INT2NUM(result); return vresult; }
1825
+ static VALUE _wrap_FXColorList_appendItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1826
+ FXString *arg2 = 0 ; FXColor arg3 = (FXColor) 0 ; void *arg4 = (void *) 0 ; FXbool arg5 = (FXbool) 0 ; FXint result;
1827
+ SwigValueWrapper<FXString > p2 ; VALUE vresult = Qnil; if ((argc < 1) || (argc > 4))
1828
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1829
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); p2 = to_FXString(argv[0]); arg2 = &p2; if (argc > 1) {
1830
+ arg3 = to_FXColor(argv[1]); } if (argc > 2) { SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); } if (argc > 3) {
1831
+ arg5 = to_FXbool(argv[3]); } result = (FXint)(arg1)->appendItem((FXString const &)*arg2,arg3,arg4,arg5);
1832
+ vresult = INT2NUM(result); return vresult; }
1833
+ static VALUE _wrap_FXColorList_prependItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1834
+ FXString *arg2 = 0 ; FXColor arg3 = (FXColor) 0 ; void *arg4 = (void *) 0 ; FXbool arg5 = (FXbool) 0 ; FXint result;
1835
+ SwigValueWrapper<FXString > p2 ; VALUE vresult = Qnil; if ((argc < 1) || (argc > 4))
1836
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1837
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); p2 = to_FXString(argv[0]); arg2 = &p2; if (argc > 1) {
1838
+ arg3 = to_FXColor(argv[1]); } if (argc > 2) { SWIG_ConvertPtr(argv[2], (void **) &arg4, 0, 1); } if (argc > 3) {
1839
+ arg5 = to_FXbool(argv[3]); } result = (FXint)(arg1)->prependItem((FXString const &)*arg2,arg3,arg4,arg5);
1840
+ vresult = INT2NUM(result); return vresult; }
1841
+ static VALUE _wrap_FXColorList_setItemColor(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1842
+ FXint arg2 ; FXColor arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1843
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); arg3 = to_FXColor(argv[1]);
1844
+ (arg1)->setItemColor(arg2,arg3); return Qnil; }
1845
+ static VALUE _wrap_FXColorList_getItemColor(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1846
+ FXint arg2 ; FXColor result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1847
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1848
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
1849
+ result = (FXColor)((FXColorList const *)arg1)->getItemColor(arg2); vresult = UINT2NUM(result); return vresult; }
1850
+ static void
1851
+ free_FXColorList(FXColorList *arg1) {
1852
+ delete arg1;
1853
+ }
1854
+ static VALUE _wrap_FXColorList_save(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1855
+ FXStream *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1856
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1857
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXStream, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
1858
+ FXColorList_save((FXColorList const *)arg1,*arg2); return Qnil; }
1859
+ static VALUE _wrap_FXColorList_load(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1860
+ FXStream *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1861
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1862
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXStream, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
1863
+ FXColorList_load(arg1,*arg2); return Qnil; }
1864
+ static VALUE _wrap_FXColorList_create(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1865
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1866
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_create(arg1); return Qnil; }
1867
+ static VALUE _wrap_FXColorList_detach(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1868
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1869
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_detach(arg1); return Qnil; }
1870
+ static VALUE _wrap_FXColorList_destroy(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1871
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1872
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_destroy(arg1); return Qnil; }
1873
+ static VALUE _wrap_FXColorList_resize(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ; FXint arg2 ;
1874
+ FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1875
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1876
+ FXColorList_resize(arg1,arg2,arg3); return Qnil; }
1877
+ static VALUE _wrap_FXColorList_getDefaultWidth(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1878
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1879
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1880
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); result = (FXint)FXColorList_getDefaultWidth(arg1);
1881
+ vresult = INT2NUM(result); return vresult; }
1882
+ static VALUE _wrap_FXColorList_getDefaultHeight(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1883
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1884
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1885
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); result = (FXint)FXColorList_getDefaultHeight(arg1);
1886
+ vresult = INT2NUM(result); return vresult; }
1887
+ static VALUE _wrap_FXColorList_getWidthForHeight(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1888
+ FXint arg2 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1889
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1890
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
1891
+ result = (FXint)FXColorList_getWidthForHeight(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1892
+ static VALUE _wrap_FXColorList_getHeightForWidth(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1893
+ FXint arg2 ; FXint result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
1894
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1895
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
1896
+ result = (FXint)FXColorList_getHeightForWidth(arg1,arg2); vresult = INT2NUM(result); return vresult; }
1897
+ static VALUE _wrap_FXColorList_canFocus(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1898
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1899
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1900
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1901
+ result = (bool)FXColorList_canFocus((FXColorList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1902
+ static VALUE _wrap_FXColorList_setFocus(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1903
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1904
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_setFocus(arg1); return Qnil; }
1905
+ static VALUE _wrap_FXColorList_killFocus(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1906
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1907
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_killFocus(arg1); return Qnil; }
1908
+ static VALUE _wrap_FXColorList_changeFocus(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1909
+ FXWindow *arg2 = (FXWindow *) 0 ; if ((argc < 1) || (argc > 1))
1910
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1911
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1912
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1); FXColorList_changeFocus(arg1,arg2); return Qnil; }
1913
+ static VALUE _wrap_FXColorList_setDefault(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1914
+ FXbool arg2 = (FXbool) 1 ; if ((argc < 0) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1915
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
1916
+ FXColorList_setDefault(arg1,arg2); return Qnil; }
1917
+ static VALUE _wrap_FXColorList_enable(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1918
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1919
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_enable(arg1); return Qnil; }
1920
+ static VALUE _wrap_FXColorList_disable(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1921
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1922
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_disable(arg1); return Qnil; }
1923
+ static VALUE _wrap_FXColorList_raiseWindow(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1924
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1925
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_raise(arg1); return Qnil; }
1926
+ static VALUE _wrap_FXColorList_lower(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1927
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1928
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_lower(arg1); return Qnil; }
1929
+ static VALUE _wrap_FXColorList_move(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ; FXint arg2 ;
1930
+ FXint arg3 ; if ((argc < 2) || (argc > 2)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1931
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1932
+ FXColorList_move(arg1,arg2,arg3); return Qnil; }
1933
+ static VALUE _wrap_FXColorList_position__SWIG_0(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1934
+ FXint arg2 ; FXint arg3 ; FXint arg4 ; FXint arg5 ; if ((argc < 4) || (argc > 4))
1935
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc);
1936
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1937
+ arg4 = NUM2INT(argv[2]); arg5 = NUM2INT(argv[3]); FXColorList_position(arg1,arg2,arg3,arg4,arg5); return Qnil; }
1938
+ static VALUE _wrap_FXColorList_layout(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1939
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1940
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_layout(arg1); return Qnil; }
1941
+ static VALUE _wrap_FXColorList_recalc(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1942
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1943
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_recalc(arg1); return Qnil; }
1944
+ static VALUE _wrap_FXColorList_reparent(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1945
+ FXWindow *arg2 = (FXWindow *) 0 ; FXWindow *arg3 = (FXWindow *) 0 ; if ((argc < 2) || (argc > 2))
1946
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1947
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1948
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXWindow, 1);
1949
+ SWIG_ConvertPtr(argv[1], (void **) &arg3, SWIGTYPE_p_FXWindow, 1); FXColorList_reparent(arg1,arg2,arg3); return Qnil; }
1950
+ static VALUE _wrap_FXColorList_show(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1951
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1952
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_show(arg1); return Qnil; }
1953
+ static VALUE _wrap_FXColorList_hide(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1954
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1955
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_hide(arg1); return Qnil; }
1956
+ static VALUE _wrap_FXColorList_isComposite(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1957
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1958
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1959
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1960
+ result = (bool)FXColorList_isComposite((FXColorList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1961
+ static VALUE _wrap_FXColorList_contains(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1962
+ FXint arg2 ; FXint arg3 ; bool result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
1963
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
1964
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
1965
+ result = (bool)FXColorList_contains((FXColorList const *)arg1,arg2,arg3); vresult = result ? Qtrue : Qfalse;
1966
+ return vresult; }
1967
+ static VALUE _wrap_FXColorList_doesSaveUnder(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1968
+ bool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
1969
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1970
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1971
+ result = (bool)FXColorList_doesSaveUnder((FXColorList const *)arg1); vresult = result ? Qtrue : Qfalse; return vresult; }
1972
+ static VALUE _wrap_FXColorList_setBackColor(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1973
+ FXColor arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1974
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = to_FXColor(argv[0]);
1975
+ FXColorList_setBackColor(arg1,arg2); return Qnil; }
1976
+ static VALUE _wrap_FXColorList_tr(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ; FXchar *arg2 ;
1977
+ FXchar *arg3 = (FXchar *) 0 ; FXchar *result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
1978
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1979
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = StringValuePtr(argv[0]); if (argc > 1) {
1980
+ arg3 = StringValuePtr(argv[1]); }
1981
+ result = (FXchar *)FXColorList_tr((FXColorList const *)arg1,(FXchar const *)arg2,(FXchar const *)arg3);
1982
+ vresult = rb_str_new2(result); return vresult; }
1983
+ static VALUE _wrap_FXColorList_dropEnable(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1984
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1985
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_dropEnable(arg1); return Qnil; }
1986
+ static VALUE _wrap_FXColorList_dropDisable(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1987
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
1988
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_dropDisable(arg1); return Qnil; }
1989
+ static VALUE _wrap_FXColorList_setShape__SWIG_0(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1990
+ FXRegion *arg2 = 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1991
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1992
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXRegion, 1); if (arg2 == NULL) rb_raise(rb_eTypeError, "null reference");
1993
+ FXColorList_setShape(arg1,(FXRegion const &)*arg2); return Qnil; }
1994
+ static VALUE _wrap_FXColorList_setShape__SWIG_1(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
1995
+ FXBitmap *arg2 = (FXBitmap *) 0 ; if ((argc < 1) || (argc > 1))
1996
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
1997
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
1998
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXBitmap, 1); FXColorList_setShape(arg1,arg2); return Qnil; }
1999
+ static VALUE _wrap_FXColorList_setShape__SWIG_2(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2000
+ FXIcon *arg2 = (FXIcon *) 0 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2001
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
2002
+ SWIG_ConvertPtr(argv[0], (void **) &arg2, SWIGTYPE_p_FXIcon, 1); FXColorList_setShape(arg1,arg2); return Qnil; }
2003
+ static VALUE _wrap_FXColorList_setShape(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[3]; int ii; argc = nargs + 1;
2004
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 2); ii++) { argv[ii] = args[ii-1]; } if (argc == 2) { int _v; {
2005
+ void *ptr;
2006
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXColorList, 0) != -1)) ? 1 : 0; }
2007
+ if (_v) { { void *ptr;
2008
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXRegion, 0) != -1)) ? 1 : 0; }
2009
+ if (_v) { return _wrap_FXColorList_setShape__SWIG_0(nargs, args, self);} } } if (argc == 2) { int _v; {
2010
+ void *ptr;
2011
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXColorList, 0) != -1)) ? 1 : 0; }
2012
+ if (_v) { { void *ptr;
2013
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXBitmap, 0) != -1)) ? 1 : 0; }
2014
+ if (_v) { return _wrap_FXColorList_setShape__SWIG_1(nargs, args, self);} } } if (argc == 2) { int _v; {
2015
+ void *ptr;
2016
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXColorList, 0) != -1)) ? 1 : 0; }
2017
+ if (_v) { { void *ptr;
2018
+ _v = (NIL_P(argv[1]) || (TYPE(argv[1]) == T_DATA && SWIG_ConvertPtr(argv[1], &ptr, SWIGTYPE_p_FXIcon, 0) != -1)) ? 1 : 0; }
2019
+ if (_v) { return _wrap_FXColorList_setShape__SWIG_2(nargs, args, self);} } }
2020
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXColorList_setShape'"); return Qnil; }
2021
+ static VALUE _wrap_FXColorList_clearShape(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2022
+ if ((argc < 0) || (argc > 0)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2023
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); FXColorList_clearShape(arg1); return Qnil; }
2024
+ static VALUE _wrap_FXColorList_getViewportHeight(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2025
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2026
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2027
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); result = (FXint)FXColorList_getViewportHeight(arg1);
2028
+ vresult = INT2NUM(result); return vresult; }
2029
+ static VALUE _wrap_FXColorList_getViewportWidth(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2030
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2031
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2032
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); result = (FXint)FXColorList_getViewportWidth(arg1);
2033
+ vresult = INT2NUM(result); return vresult; }
2034
+ static VALUE _wrap_FXColorList_getContentHeight(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2035
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2036
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2037
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); result = (FXint)FXColorList_getContentHeight(arg1);
2038
+ vresult = INT2NUM(result); return vresult; }
2039
+ static VALUE _wrap_FXColorList_getContentWidth(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2040
+ FXint result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2041
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2042
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); result = (FXint)FXColorList_getContentWidth(arg1);
2043
+ vresult = INT2NUM(result); return vresult; }
2044
+ static VALUE _wrap_FXColorList_position__SWIG_1(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2045
+ VALUE result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 0))
2046
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2047
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1);
2048
+ result = (VALUE)FXColorList_position__SWIG_1((FXColorList const *)arg1); vresult = result; return vresult; }
2049
+ static VALUE _wrap_FXColorList_position(int nargs, VALUE *args, VALUE self) { int argc; VALUE argv[6]; int ii; argc = nargs + 1;
2050
+ argv[0] = self; for (ii = 1; (ii < argc) && (ii < 5); ii++) { argv[ii] = args[ii-1]; } if (argc == 1) { int _v; {
2051
+ void *ptr;
2052
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXColorList, 0) != -1)) ? 1 : 0; }
2053
+ if (_v) { return _wrap_FXColorList_position__SWIG_1(nargs, args, self);} } if (argc == 5) { int _v; { void *ptr;
2054
+ _v = (NIL_P(argv[0]) || (TYPE(argv[0]) == T_DATA && SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_FXColorList, 0) != -1)) ? 1 : 0; }
2055
+ if (_v) { { _v = ((TYPE(argv[1]) == T_FIXNUM) || (TYPE(argv[1]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
2056
+ _v = ((TYPE(argv[2]) == T_FIXNUM) || (TYPE(argv[2]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
2057
+ _v = ((TYPE(argv[3]) == T_FIXNUM) || (TYPE(argv[3]) == T_BIGNUM)) ? 1 : 0; } if (_v) { {
2058
+ _v = ((TYPE(argv[4]) == T_FIXNUM) || (TYPE(argv[4]) == T_BIGNUM)) ? 1 : 0; } if (_v) {
2059
+ return _wrap_FXColorList_position__SWIG_0(nargs, args, self);} } } } } }
2060
+ rb_raise(rb_eArgError, "No matching function for overloaded 'FXColorList_position'"); return Qnil; }
2061
+ static VALUE _wrap_FXColorList_enableItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2062
+ FXint arg2 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
2063
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2064
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
2065
+ result = (FXbool)FXColorList_enableItem(arg1,arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
2066
+ static VALUE _wrap_FXColorList_disableItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2067
+ FXint arg2 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 1))
2068
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2069
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
2070
+ result = (FXbool)FXColorList_disableItem(arg1,arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
2071
+ static VALUE _wrap_FXColorList_makeItemVisible(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2072
+ FXint arg2 ; if ((argc < 1) || (argc > 1)) rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2073
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]);
2074
+ FXColorList_makeItemVisible(arg1,arg2); return Qnil; }
2075
+ static VALUE _wrap_FXColorList_getItemAt(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2076
+ FXint arg2 ; FXint arg3 ; FXint result; VALUE vresult = Qnil; if ((argc < 2) || (argc > 2))
2077
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc);
2078
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); arg3 = NUM2INT(argv[1]);
2079
+ result = (FXint)FXColorList_getItemAt((FXColorList const *)arg1,arg2,arg3); vresult = INT2NUM(result); return vresult; }
2080
+ static VALUE _wrap_FXColorList_selectItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2081
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2082
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2083
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
2084
+ arg3 = to_FXbool(argv[1]); } result = (FXbool)FXColorList_selectItem(arg1,arg2,arg3);
2085
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2086
+ static VALUE _wrap_FXColorList_deselectItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2087
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2088
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2089
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
2090
+ arg3 = to_FXbool(argv[1]); } result = (FXbool)FXColorList_deselectItem(arg1,arg2,arg3);
2091
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2092
+ static VALUE _wrap_FXColorList_toggleItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2093
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2094
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2095
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
2096
+ arg3 = to_FXbool(argv[1]); } result = (FXbool)FXColorList_toggleItem(arg1,arg2,arg3);
2097
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2098
+ static VALUE _wrap_FXColorList_extendSelection(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2099
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 1) || (argc > 2))
2100
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2101
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
2102
+ arg3 = to_FXbool(argv[1]); } result = (FXbool)FXColorList_extendSelection(arg1,arg2,arg3);
2103
+ vresult = result ? Qtrue : Qfalse; return vresult; }
2104
+ static VALUE _wrap_FXColorList_killSelection(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2105
+ FXbool arg2 = (FXbool) 0 ; FXbool result; VALUE vresult = Qnil; if ((argc < 0) || (argc > 1))
2106
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc);
2107
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); if (argc > 0) { arg2 = to_FXbool(argv[0]); }
2108
+ result = (FXbool)FXColorList_killSelection(arg1,arg2); vresult = result ? Qtrue : Qfalse; return vresult; }
2109
+ static VALUE _wrap_FXColorList_setCurrentItem(int argc, VALUE *argv, VALUE self) { FXColorList *arg1 = (FXColorList *) 0 ;
2110
+ FXint arg2 ; FXbool arg3 = (FXbool) 0 ; if ((argc < 1) || (argc > 2))
2111
+ rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc);
2112
+ SWIG_ConvertPtr(self, (void **) &arg1, SWIGTYPE_p_FXColorList, 1); arg2 = NUM2INT(argv[0]); if (argc > 1) {
2113
+ arg3 = to_FXbool(argv[1]); } FXColorList_setCurrentItem(arg1,arg2,arg3); return Qnil; }
1629
2114
 
1630
2115
  /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
1631
2116
 
@@ -1638,6 +2123,9 @@ static void *_p_FXDockSiteTo_p_FXId(void *x) {
1638
2123
  static void *_p_FXPopupTo_p_FXId(void *x) {
1639
2124
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
1640
2125
  }
2126
+ static void *_p_FXColorListTo_p_FXId(void *x) {
2127
+ return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
2128
+ }
1641
2129
  static void *_p_FXShutterItemTo_p_FXId(void *x) {
1642
2130
  return (void *)((FXId *) (FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1643
2131
  }
@@ -1731,6 +2219,9 @@ static void *_p_FXAccelTableTo_p_FXObject(void *x) {
1731
2219
  static void *_p_FXCompositeTo_p_FXObject(void *x) {
1732
2220
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXComposite *) x));
1733
2221
  }
2222
+ static void *_p_FXColorItemTo_p_FXObject(void *x) {
2223
+ return (void *)((FXObject *) (FXListItem *) ((FXColorItem *) x));
2224
+ }
1734
2225
  static void *_p_FXRegistryTo_p_FXObject(void *x) {
1735
2226
  return (void *)((FXObject *) (FXDict *)(FXSettings *) ((FXRegistry *) x));
1736
2227
  }
@@ -1776,12 +2267,12 @@ static void *_p_FXWindowTo_p_FXObject(void *x) {
1776
2267
  static void *_p_FXScrollWindowTo_p_FXObject(void *x) {
1777
2268
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *) ((FXScrollWindow *) x));
1778
2269
  }
1779
- static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
1780
- return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
1781
- }
1782
2270
  static void *_p_FXHorizontalFrameTo_p_FXObject(void *x) {
1783
2271
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXHorizontalFrame *) x));
1784
2272
  }
2273
+ static void *_p_FXVerticalFrameTo_p_FXObject(void *x) {
2274
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXVerticalFrame *) x));
2275
+ }
1785
2276
  static void *_p_FXSplitterTo_p_FXObject(void *x) {
1786
2277
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *) ((FXSplitter *) x));
1787
2278
  }
@@ -1830,6 +2321,9 @@ static void *_p_FXCURCursorTo_p_FXObject(void *x) {
1830
2321
  static void *_p_FXCursorTo_p_FXObject(void *x) {
1831
2322
  return (void *)((FXObject *) (FXId *) ((FXCursor *) x));
1832
2323
  }
2324
+ static void *_p_FXTranslatorTo_p_FXObject(void *x) {
2325
+ return (void *)((FXObject *) ((FXTranslator *) x));
2326
+ }
1833
2327
  static void *_p_FXDockSiteTo_p_FXObject(void *x) {
1834
2328
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXDockSite *) x));
1835
2329
  }
@@ -1851,6 +2345,9 @@ static void *_p_FXIdTo_p_FXObject(void *x) {
1851
2345
  static void *_p_FXFrameTo_p_FXObject(void *x) {
1852
2346
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *) ((FXFrame *) x));
1853
2347
  }
2348
+ static void *_p_FXColorListTo_p_FXObject(void *x) {
2349
+ return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
2350
+ }
1854
2351
  static void *_p_FXSpringTo_p_FXObject(void *x) {
1855
2352
  return (void *)((FXObject *) (FXId *)(FXDrawable *)(FXWindow *)(FXComposite *)(FXPacker *) ((FXSpring *) x));
1856
2353
  }
@@ -1866,6 +2363,9 @@ static void *_p_FXListTo_p_FXScrollArea(void *x) {
1866
2363
  static void *_p_FXScrollWindowTo_p_FXScrollArea(void *x) {
1867
2364
  return (void *)((FXScrollArea *) ((FXScrollWindow *) x));
1868
2365
  }
2366
+ static void *_p_FXColorListTo_p_FXScrollArea(void *x) {
2367
+ return (void *)((FXScrollArea *) (FXList *) ((FXColorList *) x));
2368
+ }
1869
2369
  static void *_p_FXDockSiteTo_p_FXWindow(void *x) {
1870
2370
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *) ((FXDockSite *) x));
1871
2371
  }
@@ -1875,6 +2375,9 @@ static void *_p_FXFrameTo_p_FXWindow(void *x) {
1875
2375
  static void *_p_FXPopupTo_p_FXWindow(void *x) {
1876
2376
  return (void *)((FXWindow *) (FXComposite *)(FXShell *) ((FXPopup *) x));
1877
2377
  }
2378
+ static void *_p_FXColorListTo_p_FXWindow(void *x) {
2379
+ return (void *)((FXWindow *) (FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
2380
+ }
1878
2381
  static void *_p_FXShutterItemTo_p_FXWindow(void *x) {
1879
2382
  return (void *)((FXWindow *) (FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1880
2383
  }
@@ -1944,6 +2447,9 @@ static void *_p_FXDockSiteTo_p_FXComposite(void *x) {
1944
2447
  static void *_p_FXPopupTo_p_FXComposite(void *x) {
1945
2448
  return (void *)((FXComposite *) (FXShell *) ((FXPopup *) x));
1946
2449
  }
2450
+ static void *_p_FXColorListTo_p_FXComposite(void *x) {
2451
+ return (void *)((FXComposite *) (FXScrollArea *)(FXList *) ((FXColorList *) x));
2452
+ }
1947
2453
  static void *_p_FXShutterItemTo_p_FXComposite(void *x) {
1948
2454
  return (void *)((FXComposite *) (FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
1949
2455
  }
@@ -2019,6 +2525,9 @@ static void *_p_FXFrameTo_p_FXDrawable(void *x) {
2019
2525
  static void *_p_FXPopupTo_p_FXDrawable(void *x) {
2020
2526
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXShell *) ((FXPopup *) x));
2021
2527
  }
2528
+ static void *_p_FXColorListTo_p_FXDrawable(void *x) {
2529
+ return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXScrollArea *)(FXList *) ((FXColorList *) x));
2530
+ }
2022
2531
  static void *_p_FXShutterItemTo_p_FXDrawable(void *x) {
2023
2532
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *)(FXVerticalFrame *) ((FXShutterItem *) x));
2024
2533
  }
@@ -2085,34 +2594,46 @@ static void *_p_FXSpringTo_p_FXDrawable(void *x) {
2085
2594
  static void *_p_FXSwitcherTo_p_FXDrawable(void *x) {
2086
2595
  return (void *)((FXDrawable *) (FXWindow *)(FXComposite *)(FXPacker *) ((FXSwitcher *) x));
2087
2596
  }
2088
- static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2089
- static swig_type_info _swigt__p_FXIcon[] = {{"_p_FXIcon", 0, "FXIcon *", 0, 0, 0, 0},{"_p_FXIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2090
- static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2091
- static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2092
- static swig_type_info _swigt__p_FXList[] = {{"_p_FXList", 0, "FXList *", 0, 0, 0, 0},{"_p_FXList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2093
- static swig_type_info _swigt__p_FXFont[] = {{"_p_FXFont", 0, "FXFont *", 0, 0, 0, 0},{"_p_FXFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2094
- 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_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRecentFiles", _p_FXRecentFilesTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDocument", _p_FXDocumentTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXListItem", _p_FXListItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_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}};
2095
- static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2096
- static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXScrollArea, 0, 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}};
2097
- static swig_type_info _swigt__p_FXListItem[] = {{"_p_FXListItem", 0, "FXListItem *", 0, 0, 0, 0},{"_p_FXListItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2098
- static swig_type_info _swigt__p_FXRegion[] = {{"_p_FXRegion", 0, "FXRegion *", 0, 0, 0, 0},{"_p_FXRegion", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2597
+ static void *_p_FXColorListTo_p_FXList(void *x) {
2598
+ return (void *)((FXList *) ((FXColorList *) x));
2599
+ }
2600
+ static void *_p_FXColorItemTo_p_FXListItem(void *x) {
2601
+ return (void *)((FXListItem *) ((FXColorItem *) x));
2602
+ }
2603
+ 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_FXColorItem", _p_FXColorItemTo_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_FXMainWindow", _p_FXMainWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_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_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_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_FXGIFCursor", _p_FXGIFCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXDelegator", _p_FXDelegatorTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_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_FXListItem", _p_FXListItemTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXObject, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_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}};
2604
+ static swig_type_info _swigt__p_FXColorList[] = {{"_p_FXColorList", 0, "FXColorList *", 0, 0, 0, 0},{"_p_FXColorList", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2605
+ static swig_type_info _swigt__p_FXScrollArea[] = {{"_p_FXScrollArea", 0, "FXScrollArea *", 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXScrollArea, 0, 0, 0, 0, 0},{"_p_FXScrollArea", 0, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_p_FXScrollArea, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2606
+ static swig_type_info _swigt__p_FXWindow[] = {{"_p_FXWindow", 0, "FXWindow *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXWindow", 0, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXWindow, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2607
+ static swig_type_info _swigt__p_FXComposite[] = {{"_p_FXComposite", 0, "FXComposite *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXComposite", 0, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXComposite, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXComposite, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2099
2608
  static swig_type_info _swigt__p_FXBitmap[] = {{"_p_FXBitmap", 0, "FXBitmap *", 0, 0, 0, 0},{"_p_FXBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2609
+ static swig_type_info _swigt__p_FXColorItem[] = {{"_p_FXColorItem", 0, "FXColorItem *", 0, 0, 0, 0},{"_p_FXColorItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2610
+ static swig_type_info _swigt__p_FXFont[] = {{"_p_FXFont", 0, "FXFont *", 0, 0, 0, 0},{"_p_FXFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2611
+ static swig_type_info _swigt__p_FXId[] = {{"_p_FXId", 0, "FXId *", 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXId", 0, 0, 0, 0, 0, 0},{"_p_FXFont", _p_FXFontTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXGIFCursor", _p_FXGIFCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCURCursor", _p_FXCURCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXCursor", _p_FXCursorTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXDrawable", _p_FXDrawableTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXVisual", _p_FXVisualTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXId, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXId, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2100
2612
  static swig_type_info _swigt__p_FXStream[] = {{"_p_FXStream", 0, "FXStream *", 0, 0, 0, 0},{"_p_FXFileStream", _p_FXFileStreamTo_p_FXStream, 0, 0, 0, 0, 0},{"_p_FXMemoryStream", _p_FXMemoryStreamTo_p_FXStream, 0, 0, 0, 0, 0},{"_p_FXStream", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2613
+ static swig_type_info _swigt__p_FXDrawable[] = {{"_p_FXDrawable", 0, "FXDrawable *", 0, 0, 0, 0},{"_p_FXDockSite", _p_FXDockSiteTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXFrame", _p_FXFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPopup", _p_FXPopupTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutterItem", _p_FXShutterItemTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollArea", _p_FXScrollAreaTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXStatusBar", _p_FXStatusBarTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMainWindow", _p_FXMainWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXTopWindow", _p_FXTopWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXRootWindow", _p_FXRootWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXWindow", _p_FXWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXScrollWindow", _p_FXScrollWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplashWindow", _p_FXSplashWindowTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXComposite", _p_FXCompositeTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShell", _p_FXShellTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXGroupBox", _p_FXGroupBoxTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXDrawable", 0, 0, 0, 0, 0, 0},{"_p_FXList", _p_FXListTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSplitter", _p_FXSplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FX4Splitter", _p_FX4SplitterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXPacker", _p_FXPackerTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXVerticalFrame", _p_FXVerticalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXHorizontalFrame", _p_FXHorizontalFrameTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXShutter", _p_FXShutterTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXMatrix", _p_FXMatrixTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSpring", _p_FXSpringTo_p_FXDrawable, 0, 0, 0, 0, 0},{"_p_FXSwitcher", _p_FXSwitcherTo_p_FXDrawable, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2614
+ static swig_type_info _swigt__p_FXList[] = {{"_p_FXList", 0, "FXList *", 0, 0, 0, 0},{"_p_FXList", 0, 0, 0, 0, 0, 0},{"_p_FXColorList", _p_FXColorListTo_p_FXList, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2615
+ static swig_type_info _swigt__p_FXIcon[] = {{"_p_FXIcon", 0, "FXIcon *", 0, 0, 0, 0},{"_p_FXIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2616
+ static swig_type_info _swigt__p_FXColor[] = {{"_p_FXColor", 0, "unsigned int *|FXColor *", 0, 0, 0, 0},{"_p_FXColor", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2617
+ static swig_type_info _swigt__p_FXRegion[] = {{"_p_FXRegion", 0, "FXRegion *", 0, 0, 0, 0},{"_p_FXRegion", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2618
+ static swig_type_info _swigt__p_FXListItem[] = {{"_p_FXListItem", 0, "FXListItem *", 0, 0, 0, 0},{"_p_FXColorItem", _p_FXColorItemTo_p_FXListItem, 0, 0, 0, 0, 0},{"_p_FXListItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
2101
2619
 
2102
2620
  static swig_type_info *swig_types_initial[] = {
2103
- _swigt__p_FXId,
2104
- _swigt__p_FXIcon,
2105
- _swigt__p_FXComposite,
2106
- _swigt__p_FXWindow,
2107
- _swigt__p_FXList,
2108
- _swigt__p_FXFont,
2109
2621
  _swigt__p_FXObject,
2110
- _swigt__p_FXDrawable,
2622
+ _swigt__p_FXColorList,
2111
2623
  _swigt__p_FXScrollArea,
2112
- _swigt__p_FXListItem,
2113
- _swigt__p_FXRegion,
2624
+ _swigt__p_FXWindow,
2625
+ _swigt__p_FXComposite,
2114
2626
  _swigt__p_FXBitmap,
2627
+ _swigt__p_FXColorItem,
2628
+ _swigt__p_FXFont,
2629
+ _swigt__p_FXId,
2115
2630
  _swigt__p_FXStream,
2631
+ _swigt__p_FXDrawable,
2632
+ _swigt__p_FXList,
2633
+ _swigt__p_FXIcon,
2634
+ _swigt__p_FXColor,
2635
+ _swigt__p_FXRegion,
2636
+ _swigt__p_FXListItem,
2116
2637
  0
2117
2638
  };
2118
2639
 
@@ -2173,6 +2694,9 @@ SWIGEXPORT(void) Init_list(void) {
2173
2694
  cFXListItem.mark = (void (*)(void *)) FXRbListItem::markfunc;
2174
2695
  cFXListItem.destroy = (void (*)(void *)) FXRbListItem::freefunc;
2175
2696
 
2697
+ SWIGTYPE_p_FXListItem->dcast = (swig_dycast_func) FXListItem_dynamic_cast;
2698
+
2699
+
2176
2700
  cFXList.klass = rb_define_class_under(mFox, "FXList", ((swig_class *) SWIGTYPE_p_FXScrollArea->clientdata)->klass);
2177
2701
  SWIG_TypeClientData(SWIGTYPE_p_FXList, (void *) &cFXList);
2178
2702
  rb_define_alloc_func(cFXList.klass, _wrap_FXList_allocate);
@@ -2219,6 +2743,7 @@ SWIGEXPORT(void) Init_list(void) {
2219
2743
  rb_define_alias(cFXList.klass, "<<", "appendItem");
2220
2744
  rb_define_method(cFXList.klass, "prependItem", VALUEFUNC(_wrap_FXList_prependItem), -1);
2221
2745
  rb_define_method(cFXList.klass, "moveItem", VALUEFUNC(_wrap_FXList_moveItem), -1);
2746
+ rb_define_method(cFXList.klass, "extractItem", VALUEFUNC(_wrap_FXList_extractItem), -1);
2222
2747
  rb_define_method(cFXList.klass, "removeItem", VALUEFUNC(_wrap_FXList_removeItem), -1);
2223
2748
  rb_define_method(cFXList.klass, "clearItems", VALUEFUNC(_wrap_FXList_clearItems), -1);
2224
2749
  rb_define_method(cFXList.klass, "getItemWidth", VALUEFUNC(_wrap_FXList_getItemWidth), -1);
@@ -2283,6 +2808,9 @@ SWIGEXPORT(void) Init_list(void) {
2283
2808
  rb_define_method(cFXList.klass, "contains", VALUEFUNC(_wrap_FXList_contains), -1);
2284
2809
  rb_define_method(cFXList.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXList_doesSaveUnder), -1);
2285
2810
  rb_define_method(cFXList.klass, "setBackColor", VALUEFUNC(_wrap_FXList_setBackColor), -1);
2811
+ rb_define_method(cFXList.klass, "tr", VALUEFUNC(_wrap_FXList_tr), -1);
2812
+ rb_define_method(cFXList.klass, "dropEnable", VALUEFUNC(_wrap_FXList_dropEnable), -1);
2813
+ rb_define_method(cFXList.klass, "dropDisable", VALUEFUNC(_wrap_FXList_dropDisable), -1);
2286
2814
  rb_define_method(cFXList.klass, "setShape", VALUEFUNC(_wrap_FXList_setShape), -1);
2287
2815
  rb_define_method(cFXList.klass, "clearShape", VALUEFUNC(_wrap_FXList_clearShape), -1);
2288
2816
  rb_define_method(cFXList.klass, "getViewportHeight", VALUEFUNC(_wrap_FXList_getViewportHeight), -1);
@@ -2302,5 +2830,93 @@ SWIGEXPORT(void) Init_list(void) {
2302
2830
  rb_define_method(cFXList.klass, "setCurrentItem", VALUEFUNC(_wrap_FXList_setCurrentItem), -1);
2303
2831
  cFXList.mark = (void (*)(void *)) FXRbList::markfunc;
2304
2832
  cFXList.destroy = (void (*)(void *)) FXRbObject::freefunc;
2833
+
2834
+ SWIGTYPE_p_FXListItem->dcast = (swig_dycast_func) FXListItem_dynamic_cast;
2835
+
2836
+
2837
+ cFXColorItem.klass = rb_define_class_under(mFox, "FXColorItem", ((swig_class *) SWIGTYPE_p_FXListItem->clientdata)->klass);
2838
+ SWIG_TypeClientData(SWIGTYPE_p_FXColorItem, (void *) &cFXColorItem);
2839
+ rb_define_alloc_func(cFXColorItem.klass, _wrap_FXColorItem_allocate);
2840
+ rb_define_method(cFXColorItem.klass, "initialize", VALUEFUNC(_wrap_new_FXColorItem), -1);
2841
+ rb_define_method(cFXColorItem.klass, "color=", VALUEFUNC(_wrap_FXColorItem_colore___), -1);
2842
+ rb_define_method(cFXColorItem.klass, "color", VALUEFUNC(_wrap_FXColorItem_color), -1);
2843
+ rb_define_method(cFXColorItem.klass, "save", VALUEFUNC(_wrap_FXColorItem_save), -1);
2844
+ rb_define_method(cFXColorItem.klass, "load", VALUEFUNC(_wrap_FXColorItem_load), -1);
2845
+ rb_define_method(cFXColorItem.klass, "setText", VALUEFUNC(_wrap_FXColorItem_setText), -1);
2846
+ rb_define_method(cFXColorItem.klass, "setIcon", VALUEFUNC(_wrap_FXColorItem_setIcon), -1);
2847
+ rb_define_method(cFXColorItem.klass, "setFocus", VALUEFUNC(_wrap_FXColorItem_setFocus), -1);
2848
+ rb_define_method(cFXColorItem.klass, "setSelected", VALUEFUNC(_wrap_FXColorItem_setSelected), -1);
2849
+ rb_define_method(cFXColorItem.klass, "setEnabled", VALUEFUNC(_wrap_FXColorItem_setEnabled), -1);
2850
+ rb_define_method(cFXColorItem.klass, "setDraggable", VALUEFUNC(_wrap_FXColorItem_setDraggable), -1);
2851
+ rb_define_method(cFXColorItem.klass, "getWidth", VALUEFUNC(_wrap_FXColorItem_getWidth), -1);
2852
+ rb_define_method(cFXColorItem.klass, "getHeight", VALUEFUNC(_wrap_FXColorItem_getHeight), -1);
2853
+ rb_define_method(cFXColorItem.klass, "create", VALUEFUNC(_wrap_FXColorItem_create), -1);
2854
+ rb_define_method(cFXColorItem.klass, "detach", VALUEFUNC(_wrap_FXColorItem_detach), -1);
2855
+ rb_define_method(cFXColorItem.klass, "destroy", VALUEFUNC(_wrap_FXColorItem_destroy), -1);
2856
+ cFXColorItem.mark = 0;
2857
+ cFXColorItem.destroy = (void (*)(void *)) FXRbColorItem::freefunc;
2858
+
2859
+ cFXColorList.klass = rb_define_class_under(mFox, "FXColorList", ((swig_class *) SWIGTYPE_p_FXList->clientdata)->klass);
2860
+ SWIG_TypeClientData(SWIGTYPE_p_FXColorList, (void *) &cFXColorList);
2861
+ rb_define_alloc_func(cFXColorList.klass, _wrap_FXColorList_allocate);
2862
+ rb_define_method(cFXColorList.klass, "initialize", VALUEFUNC(_wrap_new_FXColorList), -1);
2863
+ rb_define_method(cFXColorList.klass, "fillItems", VALUEFUNC(_wrap_FXColorList_fillItems), -1);
2864
+ rb_define_method(cFXColorList.klass, "insertItem", VALUEFUNC(_wrap_FXColorList_insertItem), -1);
2865
+ rb_define_method(cFXColorList.klass, "appendItem", VALUEFUNC(_wrap_FXColorList_appendItem), -1);
2866
+ rb_define_alias(cFXColorList.klass, "<<", "appendItem");
2867
+ rb_define_method(cFXColorList.klass, "prependItem", VALUEFUNC(_wrap_FXColorList_prependItem), -1);
2868
+ rb_define_method(cFXColorList.klass, "setItemColor", VALUEFUNC(_wrap_FXColorList_setItemColor), -1);
2869
+ rb_define_method(cFXColorList.klass, "getItemColor", VALUEFUNC(_wrap_FXColorList_getItemColor), -1);
2870
+ rb_define_method(cFXColorList.klass, "save", VALUEFUNC(_wrap_FXColorList_save), -1);
2871
+ rb_define_method(cFXColorList.klass, "load", VALUEFUNC(_wrap_FXColorList_load), -1);
2872
+ rb_define_method(cFXColorList.klass, "create", VALUEFUNC(_wrap_FXColorList_create), -1);
2873
+ rb_define_method(cFXColorList.klass, "detach", VALUEFUNC(_wrap_FXColorList_detach), -1);
2874
+ rb_define_method(cFXColorList.klass, "destroy", VALUEFUNC(_wrap_FXColorList_destroy), -1);
2875
+ rb_define_method(cFXColorList.klass, "resize", VALUEFUNC(_wrap_FXColorList_resize), -1);
2876
+ rb_define_method(cFXColorList.klass, "getDefaultWidth", VALUEFUNC(_wrap_FXColorList_getDefaultWidth), -1);
2877
+ rb_define_method(cFXColorList.klass, "getDefaultHeight", VALUEFUNC(_wrap_FXColorList_getDefaultHeight), -1);
2878
+ rb_define_method(cFXColorList.klass, "getWidthForHeight", VALUEFUNC(_wrap_FXColorList_getWidthForHeight), -1);
2879
+ rb_define_method(cFXColorList.klass, "getHeightForWidth", VALUEFUNC(_wrap_FXColorList_getHeightForWidth), -1);
2880
+ rb_define_method(cFXColorList.klass, "canFocus", VALUEFUNC(_wrap_FXColorList_canFocus), -1);
2881
+ rb_define_method(cFXColorList.klass, "setFocus", VALUEFUNC(_wrap_FXColorList_setFocus), -1);
2882
+ rb_define_method(cFXColorList.klass, "killFocus", VALUEFUNC(_wrap_FXColorList_killFocus), -1);
2883
+ rb_define_method(cFXColorList.klass, "changeFocus", VALUEFUNC(_wrap_FXColorList_changeFocus), -1);
2884
+ rb_define_method(cFXColorList.klass, "setDefault", VALUEFUNC(_wrap_FXColorList_setDefault), -1);
2885
+ rb_define_method(cFXColorList.klass, "enable", VALUEFUNC(_wrap_FXColorList_enable), -1);
2886
+ rb_define_method(cFXColorList.klass, "disable", VALUEFUNC(_wrap_FXColorList_disable), -1);
2887
+ rb_define_method(cFXColorList.klass, "raiseWindow", VALUEFUNC(_wrap_FXColorList_raiseWindow), -1);
2888
+ rb_define_method(cFXColorList.klass, "lower", VALUEFUNC(_wrap_FXColorList_lower), -1);
2889
+ rb_define_method(cFXColorList.klass, "move", VALUEFUNC(_wrap_FXColorList_move), -1);
2890
+ rb_define_method(cFXColorList.klass, "layout", VALUEFUNC(_wrap_FXColorList_layout), -1);
2891
+ rb_define_method(cFXColorList.klass, "recalc", VALUEFUNC(_wrap_FXColorList_recalc), -1);
2892
+ rb_define_method(cFXColorList.klass, "reparent", VALUEFUNC(_wrap_FXColorList_reparent), -1);
2893
+ rb_define_method(cFXColorList.klass, "show", VALUEFUNC(_wrap_FXColorList_show), -1);
2894
+ rb_define_method(cFXColorList.klass, "hide", VALUEFUNC(_wrap_FXColorList_hide), -1);
2895
+ rb_define_method(cFXColorList.klass, "isComposite", VALUEFUNC(_wrap_FXColorList_isComposite), -1);
2896
+ rb_define_method(cFXColorList.klass, "contains", VALUEFUNC(_wrap_FXColorList_contains), -1);
2897
+ rb_define_method(cFXColorList.klass, "doesSaveUnder", VALUEFUNC(_wrap_FXColorList_doesSaveUnder), -1);
2898
+ rb_define_method(cFXColorList.klass, "setBackColor", VALUEFUNC(_wrap_FXColorList_setBackColor), -1);
2899
+ rb_define_method(cFXColorList.klass, "tr", VALUEFUNC(_wrap_FXColorList_tr), -1);
2900
+ rb_define_method(cFXColorList.klass, "dropEnable", VALUEFUNC(_wrap_FXColorList_dropEnable), -1);
2901
+ rb_define_method(cFXColorList.klass, "dropDisable", VALUEFUNC(_wrap_FXColorList_dropDisable), -1);
2902
+ rb_define_method(cFXColorList.klass, "setShape", VALUEFUNC(_wrap_FXColorList_setShape), -1);
2903
+ rb_define_method(cFXColorList.klass, "clearShape", VALUEFUNC(_wrap_FXColorList_clearShape), -1);
2904
+ rb_define_method(cFXColorList.klass, "getViewportHeight", VALUEFUNC(_wrap_FXColorList_getViewportHeight), -1);
2905
+ rb_define_method(cFXColorList.klass, "getViewportWidth", VALUEFUNC(_wrap_FXColorList_getViewportWidth), -1);
2906
+ rb_define_method(cFXColorList.klass, "getContentHeight", VALUEFUNC(_wrap_FXColorList_getContentHeight), -1);
2907
+ rb_define_method(cFXColorList.klass, "getContentWidth", VALUEFUNC(_wrap_FXColorList_getContentWidth), -1);
2908
+ rb_define_method(cFXColorList.klass, "position", VALUEFUNC(_wrap_FXColorList_position), -1);
2909
+ rb_define_method(cFXColorList.klass, "enableItem", VALUEFUNC(_wrap_FXColorList_enableItem), -1);
2910
+ rb_define_method(cFXColorList.klass, "disableItem", VALUEFUNC(_wrap_FXColorList_disableItem), -1);
2911
+ rb_define_method(cFXColorList.klass, "makeItemVisible", VALUEFUNC(_wrap_FXColorList_makeItemVisible), -1);
2912
+ rb_define_method(cFXColorList.klass, "getItemAt", VALUEFUNC(_wrap_FXColorList_getItemAt), -1);
2913
+ rb_define_method(cFXColorList.klass, "selectItem", VALUEFUNC(_wrap_FXColorList_selectItem), -1);
2914
+ rb_define_method(cFXColorList.klass, "deselectItem", VALUEFUNC(_wrap_FXColorList_deselectItem), -1);
2915
+ rb_define_method(cFXColorList.klass, "toggleItem", VALUEFUNC(_wrap_FXColorList_toggleItem), -1);
2916
+ rb_define_method(cFXColorList.klass, "extendSelection", VALUEFUNC(_wrap_FXColorList_extendSelection), -1);
2917
+ rb_define_method(cFXColorList.klass, "killSelection", VALUEFUNC(_wrap_FXColorList_killSelection), -1);
2918
+ rb_define_method(cFXColorList.klass, "setCurrentItem", VALUEFUNC(_wrap_FXColorList_setCurrentItem), -1);
2919
+ cFXColorList.mark = 0;
2920
+ cFXColorList.destroy = (void (*)(void *)) FXRbObject::freefunc;
2305
2921
  }
2306
2922