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
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
 
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
@@ -1,13 +1,13 @@
1
1
  require 'test/unit'
2
2
  require 'testcase'
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
7
7
  class TC_FXTreeList < TestCase
8
8
  def setup
9
9
  super(self.class.name)
10
- @treeList = FXTreeList.new(mainWindow, nil, 0,
10
+ @treeList = FXTreeList.new(mainWindow, 0, nil, 0,
11
11
  (TREELIST_BROWSESELECT|TREELIST_SHOWS_LINES|TREELIST_SHOWS_BOXES|
12
12
  TREELIST_ROOT_BOXES|LAYOUT_FILL_X|LAYOUT_FILL_Y))
13
13
  end
@@ -1,13 +1,13 @@
1
1
  require 'test/unit'
2
2
  require 'testcase'
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
7
7
  class TC_FXTreeListBox < TestCase
8
8
  def setup
9
9
  super(self.class.name)
10
- @treeListBox = FXTreeListBox.new(mainWindow)
10
+ @treeListBox = FXTreeListBox.new(mainWindow, 1)
11
11
  end
12
12
 
13
13
  def test_sortRootItems
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
- require 'fox14'
3
- require 'fox14/undolist'
2
+ require 'fox16'
3
+ require 'fox16/undolist'
4
4
 
5
5
  include Fox
6
6
 
data/tests/TC_FXVec2d.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
 
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
@@ -89,18 +89,18 @@ class TC_FXVec2d < Test::Unit::TestCase
89
89
  }
90
90
  end
91
91
 
92
- # As of fox-1.1.28, the len() function for FXVec2d is using the
92
+ # As of fox-1.1.28, the length() function for FXVec2d is using the
93
93
  # single-precision version of sqrtf() instead of the double-precision
94
94
  # sqrt() in its calculation. Let this test continue to fail until
95
95
  # that fix is made to FOX.
96
- def test_len
96
+ def test_length
97
97
  v = FXVec2d.new(1.0, 1.0)
98
- assert_in_delta(Math.sqrt(2), v.len, 1.0e-12)
98
+ assert_in_delta(Math.sqrt(2), v.length, 1.0e-12)
99
99
  end
100
100
 
101
- def test_len2
101
+ def test_length2
102
102
  v = FXVec2d.new(1.0, 1.0)
103
- assert_equal(2.0, v.len2)
103
+ assert_equal(2.0, v.length2)
104
104
  end
105
105
 
106
106
  def test_normalize
data/tests/TC_FXVec2f.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'fox14'
2
+ require 'fox16'
3
3
 
4
4
  include Fox
5
5
 
@@ -88,14 +88,14 @@ class TC_FXVec2f < Test::Unit::TestCase
88
88
  }
89
89
  end
90
90
 
91
- def test_len
91
+ def test_length
92
92
  v = FXVec2f.new(1.0, 1.0)
93
- assert_in_delta(Math.sqrt(2), v.len, 1.0e-7)
93
+ assert_in_delta(Math.sqrt(2), v.length, 1.0e-7)
94
94
  end
95
95
 
96
- def test_len2
96
+ def test_length2
97
97
  v = FXVec2f.new(1.0, 1.0)
98
- assert_equal(2.0, v.len2)
98
+ assert_equal(2.0, v.length2)
99
99
  end
100
100
 
101
101
  def test_normalize
data/tests/TC_FXVec3d.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'fox14'
2
+ require 'fox16'
3
3
 
4
4
  include Fox
5
5
 
@@ -98,14 +98,14 @@ class TC_FXVec3d < Test::Unit::TestCase
98
98
  def test_cross_product
99
99
  end
100
100
 
101
- def test_len
101
+ def test_length
102
102
  v = FXVec3d.new(1, 1, 1)
103
- assert_in_delta(Math.sqrt(3), v.len, 1.0e-12)
103
+ assert_in_delta(Math.sqrt(3), v.length, 1.0e-12)
104
104
  end
105
105
 
106
- def test_len2
106
+ def test_length2
107
107
  v = FXVec3d.new(1, 1, 1)
108
- assert_equal(3, v.len2)
108
+ assert_equal(3, v.length2)
109
109
  end
110
110
 
111
111
  def test_normalize
data/tests/TC_FXVec3f.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'fox14'
2
+ require 'fox16'
3
3
 
4
4
  include Fox
5
5
 
@@ -98,14 +98,14 @@ class TC_FXVec3f < Test::Unit::TestCase
98
98
  def test_cross_product
99
99
  end
100
100
 
101
- def test_len
101
+ def test_length
102
102
  v = FXVec3f.new(1, 1, 1)
103
- assert_in_delta(Math.sqrt(3), v.len, 1.0e-7)
103
+ assert_in_delta(Math.sqrt(3), v.length, 1.0e-7)
104
104
  end
105
105
 
106
- def test_len2
106
+ def test_length2
107
107
  v = FXVec3f.new(1, 1, 1)
108
- assert_equal(3, v.len2)
108
+ assert_equal(3, v.length2)
109
109
  end
110
110
 
111
111
  def test_normalize
data/tests/TC_FXVec4f.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
 
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
@@ -114,9 +114,9 @@ class TC_FXVec4f < Test::Unit::TestCase
114
114
  assert_equal(180.0, v2.dot(v1))
115
115
  end
116
116
 
117
- def test_len
117
+ def test_length
118
118
  v = FXVec4f.new(1.0, 1.0, 1.0, 1.0)
119
- assert_equal(2.0, v.len)
119
+ assert_equal(2.0, v.length)
120
120
  end
121
121
 
122
122
  def test_normalize
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
 
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  require 'test/unit'
3
3
  require 'testcase'
4
4
 
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  require 'test/unit'
3
3
  require 'testcase'
4
4
 
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  require 'test/unit'
3
3
  require 'testcase'
4
4
 
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  require 'test/unit'
3
3
  require 'testcase'
4
4
 
data/tests/TC_Misc.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
 
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  class TC_Misc < Test::Unit::TestCase
6
6
 
data/tests/TC_downcast.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'fox14'
2
+ require 'fox16'
3
3
  require 'testcase'
4
4
 
5
5
  include Fox
data/tests/TS_All.rb CHANGED
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  require 'test/unit'
3
3
 
4
4
  class TS_All
@@ -7,7 +7,6 @@ class TS_All
7
7
  Object.constants.sort.each do |k|
8
8
  next if /^TC_/ !~ k
9
9
  constant = Object.const_get(k)
10
- # if constant.kind_of?(Class) && constant.superclass == Test::Unit::TestCase
11
10
  if constant.kind_of?(Class)
12
11
  # puts "adding tests for #{constant.to_s}"
13
12
  suite << constant.suite
data/tests/stress1.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  # An FXRuby stress test developed by Gilles Filippini
3
3
  #
4
4
 
5
- require "fox14"
5
+ require "fox16"
6
6
 
7
7
  include Fox
8
8
 
@@ -14,13 +14,13 @@ RESTART_FREQUENCY = 20
14
14
  # Tree
15
15
  # =======================================================================
16
16
  class DirTree < FXTreeList
17
- def initialize(parent, tgt = nil, sel = 0, opts = 0, x = 0, y = 0, w = 0, h = 0)
17
+ def initialize(parent, nvis, tgt = nil, sel = 0, opts = 0, x = 0, y = 0, w = 0, h = 0)
18
18
  super
19
19
  end
20
20
 
21
21
  def create
22
22
  super
23
- item = appendItem(nil, "root")
23
+ item = addItemLast(nil, "root")
24
24
  @currentItem = item
25
25
  expand
26
26
  end
@@ -34,7 +34,7 @@ class DirTree < FXTreeList
34
34
  def listSubDir(parentItem)
35
35
  entries = (1..NUMBER_OF_ITEMS).collect { |i| i.to_s }
36
36
  entries.each do |entry|
37
- item = appendItem(parentItem, entry)
37
+ item = addItemLast(parentItem, entry)
38
38
  @currentItem = item if entry == "1"
39
39
  end
40
40
  end
@@ -57,7 +57,7 @@ class Application < FXApp
57
57
  init(ARGV)
58
58
 
59
59
  @mainWindow = FXMainWindow.new(self, appName, nil, nil, DECOR_ALL, 0, 0, 400, 600)
60
- @dirTree = DirTree.new(@mainWindow, nil, 0,
60
+ @dirTree = DirTree.new(@mainWindow, 0, nil, 0,
61
61
  (TREELIST_SHOWS_LINES|TREELIST_SHOWS_BOXES|TREELIST_ROOT_BOXES|
62
62
  LAYOUT_FILL_X|LAYOUT_FILL_Y))
63
63
 
data/tests/stress2.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'test/unit'
2
2
  require 'thread'
3
- require 'fox14'
3
+ require 'fox16'
4
4
 
5
5
  include Fox
6
6
 
data/tests/stress3.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'fox14'
3
+ require 'fox16'
4
4
  require 'test/unit'
5
5
 
6
6
  include Fox
data/tests/testcase.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require 'fox14'
2
+ require 'fox16'
3
3
 
4
4
  module Fox
5
5
  class TestCase < Test::Unit::TestCase
metadata CHANGED
@@ -3,17 +3,17 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: fxruby
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.4.7
7
- date: 2006-09-14 00:00:00 -05:00
6
+ version: 1.6.0
7
+ date: 2006-05-29 00:00:00 -05:00
8
8
  summary: FXRuby is the Ruby binding to the FOX GUI toolkit.
9
9
  require_paths:
10
- - ext/fox14
10
+ - ext/fox16
11
11
  - lib
12
12
  email: lyle@knology.net
13
13
  homepage: http://www.fxruby.org
14
14
  rubyforge_project:
15
15
  description: FXRuby is the Ruby binding to the FOX GUI toolkit.
16
- autorequire: fox14
16
+ autorequire: fox16
17
17
  default_executable:
18
18
  bindir: bin
19
19
  has_rdoc: true
@@ -45,7 +45,6 @@ files:
45
45
  - doc/ch04s04.html
46
46
  - doc/ch05s02.html
47
47
  - doc/ch05s03.html
48
- - doc/changes.html
49
48
  - doc/clipboardtut.html
50
49
  - doc/cvs.html
51
50
  - doc/differences.html
@@ -210,31 +209,31 @@ files:
210
209
  - examples/textedit/helpwindow.rb
211
210
  - examples/textedit/prefdialog.rb
212
211
  - examples/textedit/textedit.rb
213
- - lib/fox14/aliases.rb
214
- - lib/fox14/calendar.rb
215
- - lib/fox14/chore.rb
216
- - lib/fox14/colors.rb
217
- - lib/fox14/core.rb
218
- - lib/fox14/dict.rb
219
- - lib/fox14/execute_nonmodal.rb
220
- - lib/fox14/glgroup.rb
221
- - lib/fox14/glshapes.rb
222
- - lib/fox14/input.rb
223
- - lib/fox14/irb.rb
224
- - lib/fox14/iterators.rb
225
- - lib/fox14/keys.rb
226
- - lib/fox14/missingdep.rb
227
- - lib/fox14/pseudokeyboard.rb
228
- - lib/fox14/pseudomouse.rb
229
- - lib/fox14/responder.rb
230
- - lib/fox14/responder2.rb
231
- - lib/fox14/scintilla.rb
232
- - lib/fox14/settings.rb
233
- - lib/fox14/signal.rb
234
- - lib/fox14/splashscreen.rb
235
- - lib/fox14/timeout.rb
236
- - lib/fox14/undolist.rb
237
- - lib/fox14/version.rb
212
+ - lib/fox16/aliases.rb
213
+ - lib/fox16/calendar.rb
214
+ - lib/fox16/chore.rb
215
+ - lib/fox16/colors.rb
216
+ - lib/fox16/core.rb
217
+ - lib/fox16/dict.rb
218
+ - lib/fox16/execute_nonmodal.rb
219
+ - lib/fox16/glgroup.rb
220
+ - lib/fox16/glshapes.rb
221
+ - lib/fox16/input.rb
222
+ - lib/fox16/irb.rb
223
+ - lib/fox16/iterators.rb
224
+ - lib/fox16/keys.rb
225
+ - lib/fox16/missingdep.rb
226
+ - lib/fox16/pseudokeyboard.rb
227
+ - lib/fox16/pseudomouse.rb
228
+ - lib/fox16/responder.rb
229
+ - lib/fox16/responder2.rb
230
+ - lib/fox16/scintilla.rb
231
+ - lib/fox16/settings.rb
232
+ - lib/fox16/signal.rb
233
+ - lib/fox16/splashscreen.rb
234
+ - lib/fox16/timeout.rb
235
+ - lib/fox16/undolist.rb
236
+ - lib/fox16/version.rb
238
237
  - tests/README
239
238
  - tests/stress1.rb
240
239
  - tests/stress2.rb
@@ -337,6 +336,8 @@ files:
337
336
  - rdoc-sources/FXChoiceBox.rb
338
337
  - rdoc-sources/FXColorBar.rb
339
338
  - rdoc-sources/FXColorDialog.rb
339
+ - rdoc-sources/FXColorList.rb
340
+ - rdoc-sources/FXColorRing.rb
340
341
  - rdoc-sources/FXColorSelector.rb
341
342
  - rdoc-sources/FXColorWell.rb
342
343
  - rdoc-sources/FXColorWheel.rb
@@ -366,6 +367,8 @@ files:
366
367
  - rdoc-sources/FXDragCorner.rb
367
368
  - rdoc-sources/FXDrawable.rb
368
369
  - rdoc-sources/FXDriveBox.rb
370
+ - rdoc-sources/FXExtentd.rb
371
+ - rdoc-sources/FXExtentf.rb
369
372
  - rdoc-sources/FXFileDialog.rb
370
373
  - rdoc-sources/FXFileDict.rb
371
374
  - rdoc-sources/FXFileList.rb
@@ -402,11 +405,11 @@ files:
402
405
  - rdoc-sources/FXInputDialog.rb
403
406
  - rdoc-sources/FXJPGIcon.rb
404
407
  - rdoc-sources/FXJPGImage.rb
408
+ - rdoc-sources/FXKnob.rb
405
409
  - rdoc-sources/FXLabel.rb
406
410
  - rdoc-sources/FXList.rb
407
411
  - rdoc-sources/FXListBox.rb
408
412
  - rdoc-sources/FXMainWindow.rb
409
- - rdoc-sources/FXMat4.rb
410
413
  - rdoc-sources/FXMatrix.rb
411
414
  - rdoc-sources/FXMDIButton.rb
412
415
  - rdoc-sources/FXMDIChild.rb
@@ -494,11 +497,16 @@ files:
494
497
  - rdoc-sources/FXToolBarTab.rb
495
498
  - rdoc-sources/FXToolTip.rb
496
499
  - rdoc-sources/FXTopWindow.rb
500
+ - rdoc-sources/FXTranslator.rb
497
501
  - rdoc-sources/FXTreeList.rb
498
502
  - rdoc-sources/FXTreeListBox.rb
499
503
  - rdoc-sources/FXTriStateButton.rb
500
- - rdoc-sources/FXVec.rb
501
- - rdoc-sources/FXVec4.rb
504
+ - rdoc-sources/FXVec2d.rb
505
+ - rdoc-sources/FXVec2f.rb
506
+ - rdoc-sources/FXVec3d.rb
507
+ - rdoc-sources/FXVec3f.rb
508
+ - rdoc-sources/FXVec4d.rb
509
+ - rdoc-sources/FXVec4f.rb
502
510
  - rdoc-sources/FXVerticalFrame.rb
503
511
  - rdoc-sources/FXVisual.rb
504
512
  - rdoc-sources/FXWindow.rb
@@ -509,265 +517,271 @@ files:
509
517
  - rdoc-sources/FXXPMImage.rb
510
518
  - rdoc-sources/README.rdoc
511
519
  - rdoc-sources
512
- - ext/fox14/MANIFEST
513
- - ext/fox14/extconf.rb
514
- - ext/fox14/librb.c
515
- - ext/fox14/core_wrap.cpp
516
- - ext/fox14/dc_wrap.cpp
517
- - ext/fox14/dialogs_wrap.cpp
518
- - ext/fox14/frames_wrap.cpp
519
- - ext/fox14/fx3d_wrap.cpp
520
- - ext/fox14/FXRbApp.cpp
521
- - ext/fox14/FXRbDataTarget.cpp
522
- - ext/fox14/FXRbGLViewer.cpp
523
- - ext/fox14/FXRuby.cpp
524
- - ext/fox14/iconlist_wrap.cpp
525
- - ext/fox14/icons_wrap.cpp
526
- - ext/fox14/image_wrap.cpp
527
- - ext/fox14/impl.cpp
528
- - ext/fox14/label_wrap.cpp
529
- - ext/fox14/layout_wrap.cpp
530
- - ext/fox14/list_wrap.cpp
531
- - ext/fox14/markfuncs.cpp
532
- - ext/fox14/mdi_wrap.cpp
533
- - ext/fox14/menu_wrap.cpp
534
- - ext/fox14/scintilla_wrap.cpp
535
- - ext/fox14/table_wrap.cpp
536
- - ext/fox14/text_wrap.cpp
537
- - ext/fox14/treelist_wrap.cpp
538
- - ext/fox14/ui_wrap.cpp
539
- - ext/fox14/unregisterOwnedObjects.cpp
540
- - ext/fox14/include/FXMemoryBuffer.h
541
- - ext/fox14/include/FXRb4Splitter.h
542
- - ext/fox14/include/FXRb7Segment.h
543
- - ext/fox14/include/FXRbAccelTable.h
544
- - ext/fox14/include/FXRbApp.h
545
- - ext/fox14/include/FXRbAppVirtuals.h
546
- - ext/fox14/include/FXRbArrowButton.h
547
- - ext/fox14/include/FXRbBitmap.h
548
- - ext/fox14/include/FXRbBitmapFrame.h
549
- - ext/fox14/include/FXRbBitmapView.h
550
- - ext/fox14/include/FXRbBitmapVirtuals.h
551
- - ext/fox14/include/FXRbBMPIcon.h
552
- - ext/fox14/include/FXRbBMPImage.h
553
- - ext/fox14/include/FXRbButton.h
554
- - ext/fox14/include/FXRbCanvas.h
555
- - ext/fox14/include/FXRbCheckButton.h
556
- - ext/fox14/include/FXRbChoiceBox.h
557
- - ext/fox14/include/FXRbColorBar.h
558
- - ext/fox14/include/FXRbColorDialog.h
559
- - ext/fox14/include/FXRbColorSelector.h
560
- - ext/fox14/include/FXRbColorWell.h
561
- - ext/fox14/include/FXRbColorWheel.h
562
- - ext/fox14/include/FXRbComboBox.h
563
- - ext/fox14/include/FXRbCommon.h
564
- - ext/fox14/include/FXRbComposite.h
565
- - ext/fox14/include/FXRbCURCursor.h
566
- - ext/fox14/include/FXRbCursor.h
567
- - ext/fox14/include/FXRbCursorVirtuals.h
568
- - ext/fox14/include/FXRbDataTarget.h
569
- - ext/fox14/include/FXRbDC.h
570
- - ext/fox14/include/FXRbDCPrint.h
571
- - ext/fox14/include/FXRbDCVirtuals.h
572
- - ext/fox14/include/FXRbDCWindow.h
573
- - ext/fox14/include/FXRbDebugTarget.h
574
- - ext/fox14/include/FXRbDelegator.h
575
- - ext/fox14/include/FXRbDial.h
576
- - ext/fox14/include/FXRbDialogBox.h
577
- - ext/fox14/include/FXRbDialogBoxVirtuals.h
578
- - ext/fox14/include/FXRbDict.h
579
- - ext/fox14/include/FXRbDirBox.h
580
- - ext/fox14/include/FXRbDirDialog.h
581
- - ext/fox14/include/FXRbDirList.h
582
- - ext/fox14/include/FXRbDirSelector.h
583
- - ext/fox14/include/FXRbDockBar.h
584
- - ext/fox14/include/FXRbDockBarVirtuals.h
585
- - ext/fox14/include/FXRbDockHandler.h
586
- - ext/fox14/include/FXRbDockSite.h
587
- - ext/fox14/include/FXRbDockSiteVirtuals.h
588
- - ext/fox14/include/FXRbDockTitle.h
589
- - ext/fox14/include/FXRbDocument.h
590
- - ext/fox14/include/FXRbDragCorner.h
591
- - ext/fox14/include/FXRbDrawable.h
592
- - ext/fox14/include/FXRbDrawableVirtuals.h
593
- - ext/fox14/include/FXRbDriveBox.h
594
- - ext/fox14/include/FXRbFileDialog.h
595
- - ext/fox14/include/FXRbFileDict.h
596
- - ext/fox14/include/FXRbFileDictVirtuals.h
597
- - ext/fox14/include/FXRbFileList.h
598
- - ext/fox14/include/FXRbFileSelector.h
599
- - ext/fox14/include/FXRbFoldingItemVirtuals.h
600
- - ext/fox14/include/FXRbFoldingList.h
601
- - ext/fox14/include/FXRbFoldingListVirtuals.h
602
- - ext/fox14/include/FXRbFont.h
603
- - ext/fox14/include/FXRbFontDialog.h
604
- - ext/fox14/include/FXRbFontSelector.h
605
- - ext/fox14/include/FXRbFrame.h
606
- - ext/fox14/include/FXRbGIFCursor.h
607
- - ext/fox14/include/FXRbGIFIcon.h
608
- - ext/fox14/include/FXRbGIFImage.h
609
- - ext/fox14/include/FXRbGLCanvas.h
610
- - ext/fox14/include/FXRbGLCanvasVirtuals.h
611
- - ext/fox14/include/FXRbGLContext.h
612
- - ext/fox14/include/FXRbGLObject.h
613
- - ext/fox14/include/FXRbGLObjectVirtuals.h
614
- - ext/fox14/include/FXRbGLShape.h
615
- - ext/fox14/include/FXRbGLShapeVirtuals.h
616
- - ext/fox14/include/FXRbGLViewer.h
617
- - ext/fox14/include/FXRbGLViewerVirtuals.h
618
- - ext/fox14/include/FXRbGLVisual.h
619
- - ext/fox14/include/FXRbGradientBar.h
620
- - ext/fox14/include/FXRbGroupBox.h
621
- - ext/fox14/include/FXRbHeader.h
622
- - ext/fox14/include/FXRbHeaderItemVirtuals.h
623
- - ext/fox14/include/FXRbHorizontalFrame.h
624
- - ext/fox14/include/FXRbICOIcon.h
625
- - ext/fox14/include/FXRbICOImage.h
626
- - ext/fox14/include/FXRbIcon.h
627
- - ext/fox14/include/FXRbIconItemVirtuals.h
628
- - ext/fox14/include/FXRbIconList.h
629
- - ext/fox14/include/FXRbIconListVirtuals.h
630
- - ext/fox14/include/FXRbIconSource.h
631
- - ext/fox14/include/FXRbIconSourceVirtuals.h
632
- - ext/fox14/include/FXRbId.h
633
- - ext/fox14/include/FXRbIdVirtuals.h
634
- - ext/fox14/include/FXRbImage.h
635
- - ext/fox14/include/FXRbImageFrame.h
636
- - ext/fox14/include/FXRbImageView.h
637
- - ext/fox14/include/FXRbImageVirtuals.h
638
- - ext/fox14/include/FXRbInputDialog.h
639
- - ext/fox14/include/FXRbJPGIcon.h
640
- - ext/fox14/include/FXRbJPGImage.h
641
- - ext/fox14/include/FXRbLabel.h
642
- - ext/fox14/include/FXRbList.h
643
- - ext/fox14/include/FXRbListBox.h
644
- - ext/fox14/include/FXRbListBoxVirtuals.h
645
- - ext/fox14/include/FXRbListItemVirtuals.h
646
- - ext/fox14/include/FXRbListVirtuals.h
647
- - ext/fox14/include/FXRbMainWindow.h
648
- - ext/fox14/include/FXRbMatrix.h
649
- - ext/fox14/include/FXRbMDIButton.h
650
- - ext/fox14/include/FXRbMDIChild.h
651
- - ext/fox14/include/FXRbMDIChildVirtuals.h
652
- - ext/fox14/include/FXRbMDIClient.h
653
- - ext/fox14/include/FXRbMDIClientVirtuals.h
654
- - ext/fox14/include/FXRbMenuBar.h
655
- - ext/fox14/include/FXRbMenuButton.h
656
- - ext/fox14/include/FXRbMenuCaption.h
657
- - ext/fox14/include/FXRbMenuCascade.h
658
- - ext/fox14/include/FXRbMenuCheck.h
659
- - ext/fox14/include/FXRbMenuCommand.h
660
- - ext/fox14/include/FXRbMenuPane.h
661
- - ext/fox14/include/FXRbMenuRadio.h
662
- - ext/fox14/include/FXRbMenuSeparator.h
663
- - ext/fox14/include/FXRbMenuTitle.h
664
- - ext/fox14/include/FXRbMessageBox.h
665
- - ext/fox14/include/FXRbObject.h
666
- - ext/fox14/include/FXRbObjectVirtuals.h
667
- - ext/fox14/include/FXRbOptionMenu.h
668
- - ext/fox14/include/FXRbPacker.h
669
- - ext/fox14/include/FXRbPCXIcon.h
670
- - ext/fox14/include/FXRbPCXImage.h
671
- - ext/fox14/include/FXRbPicker.h
672
- - ext/fox14/include/FXRbPNGIcon.h
673
- - ext/fox14/include/FXRbPNGImage.h
674
- - ext/fox14/include/FXRbPopup.h
675
- - ext/fox14/include/FXRbPopupVirtuals.h
676
- - ext/fox14/include/FXRbPPMIcon.h
677
- - ext/fox14/include/FXRbPPMImage.h
678
- - ext/fox14/include/FXRbPrintDialog.h
679
- - ext/fox14/include/FXRbProgressBar.h
680
- - ext/fox14/include/FXRbProgressDialog.h
681
- - ext/fox14/include/FXRbRadioButton.h
682
- - ext/fox14/include/FXRbRealSlider.h
683
- - ext/fox14/include/FXRbRealSpinner.h
684
- - ext/fox14/include/FXRbRealSpinnerVirtuals.h
685
- - ext/fox14/include/FXRbRecentFiles.h
686
- - ext/fox14/include/FXRbRegistry.h
687
- - ext/fox14/include/FXRbReplaceDialog.h
688
- - ext/fox14/include/FXRbRGBIcon.h
689
- - ext/fox14/include/FXRbRGBImage.h
690
- - ext/fox14/include/FXRbRootWindow.h
691
- - ext/fox14/include/FXRbRuler.h
692
- - ext/fox14/include/FXRbScintilla.h
693
- - ext/fox14/include/FXRbScrollArea.h
694
- - ext/fox14/include/FXRbScrollAreaVirtuals.h
695
- - ext/fox14/include/FXRbScrollBar.h
696
- - ext/fox14/include/FXRbScrollPane.h
697
- - ext/fox14/include/FXRbScrollWindow.h
698
- - ext/fox14/include/FXRbSearchDialog.h
699
- - ext/fox14/include/FXRbSeparator.h
700
- - ext/fox14/include/FXRbSettings.h
701
- - ext/fox14/include/FXRbShell.h
702
- - ext/fox14/include/FXRbShutter.h
703
- - ext/fox14/include/FXRbShutterVirtuals.h
704
- - ext/fox14/include/FXRbSlider.h
705
- - ext/fox14/include/FXRbSpinner.h
706
- - ext/fox14/include/FXRbSpinnerVirtuals.h
707
- - ext/fox14/include/FXRbSplashWindow.h
708
- - ext/fox14/include/FXRbSplitter.h
709
- - ext/fox14/include/FXRbSpring.h
710
- - ext/fox14/include/FXRbStatusBar.h
711
- - ext/fox14/include/FXRbStatusLine.h
712
- - ext/fox14/include/FXRbStream.h
713
- - ext/fox14/include/FXRbStreamVirtuals.h
714
- - ext/fox14/include/FXRbStringDict.h
715
- - ext/fox14/include/FXRbSwitcher.h
716
- - ext/fox14/include/FXRbTabBar.h
717
- - ext/fox14/include/FXRbTabBarVirtuals.h
718
- - ext/fox14/include/FXRbTabBook.h
719
- - ext/fox14/include/FXRbTabItem.h
720
- - ext/fox14/include/FXRbTable.h
721
- - ext/fox14/include/FXRbTableItemVirtuals.h
722
- - ext/fox14/include/FXRbTableVirtuals.h
723
- - ext/fox14/include/FXRbText.h
724
- - ext/fox14/include/FXRbTextField.h
725
- - ext/fox14/include/FXRbTextVirtuals.h
726
- - ext/fox14/include/FXRbTGAIcon.h
727
- - ext/fox14/include/FXRbTGAImage.h
728
- - ext/fox14/include/FXRbTIFIcon.h
729
- - ext/fox14/include/FXRbTIFImage.h
730
- - ext/fox14/include/FXRbToggleButton.h
731
- - ext/fox14/include/FXRbToolBar.h
732
- - ext/fox14/include/FXRbToolBarGrip.h
733
- - ext/fox14/include/FXRbToolBarShell.h
734
- - ext/fox14/include/FXRbToolBarTab.h
735
- - ext/fox14/include/FXRbToolTip.h
736
- - ext/fox14/include/FXRbTopWindow.h
737
- - ext/fox14/include/FXRbTopWindowVirtuals.h
738
- - ext/fox14/include/FXRbTreeItemVirtuals.h
739
- - ext/fox14/include/FXRbTreeList.h
740
- - ext/fox14/include/FXRbTreeListBox.h
741
- - ext/fox14/include/FXRbTreeListBoxVirtuals.h
742
- - ext/fox14/include/FXRbTreeListVirtuals.h
743
- - ext/fox14/include/FXRbTriStateButton.h
744
- - ext/fox14/include/FXRbVerticalFrame.h
745
- - ext/fox14/include/FXRbVisual.h
746
- - ext/fox14/include/FXRbWindow.h
747
- - ext/fox14/include/FXRbWindowVirtuals.h
748
- - ext/fox14/include/FXRbWizard.h
749
- - ext/fox14/include/FXRbXBMIcon.h
750
- - ext/fox14/include/FXRbXBMImage.h
751
- - ext/fox14/include/FXRbXPMIcon.h
752
- - ext/fox14/include/FXRbXPMImage.h
753
- - ext/fox14/include/FXRuby.h
754
- - ext/fox14/include/impl.h
755
- - ext/fox14/include/inlinestubs.h
520
+ - ext/fox16/MANIFEST
521
+ - ext/fox16/extconf.rb
522
+ - ext/fox16/librb.c
523
+ - ext/fox16/core_wrap.cpp
524
+ - ext/fox16/dc_wrap.cpp
525
+ - ext/fox16/dialogs_wrap.cpp
526
+ - ext/fox16/frames_wrap.cpp
527
+ - ext/fox16/fx3d_wrap.cpp
528
+ - ext/fox16/FXRbApp.cpp
529
+ - ext/fox16/FXRbDataTarget.cpp
530
+ - ext/fox16/FXRbGLViewer.cpp
531
+ - ext/fox16/FXRuby.cpp
532
+ - ext/fox16/iconlist_wrap.cpp
533
+ - ext/fox16/icons_wrap.cpp
534
+ - ext/fox16/image_wrap.cpp
535
+ - ext/fox16/impl.cpp
536
+ - ext/fox16/label_wrap.cpp
537
+ - ext/fox16/layout_wrap.cpp
538
+ - ext/fox16/list_wrap.cpp
539
+ - ext/fox16/markfuncs.cpp
540
+ - ext/fox16/mdi_wrap.cpp
541
+ - ext/fox16/menu_wrap.cpp
542
+ - ext/fox16/scintilla_wrap.cpp
543
+ - ext/fox16/table_wrap.cpp
544
+ - ext/fox16/text_wrap.cpp
545
+ - ext/fox16/treelist_wrap.cpp
546
+ - ext/fox16/ui_wrap.cpp
547
+ - ext/fox16/unregisterOwnedObjects.cpp
548
+ - ext/fox16/include/FXMemoryBuffer.h
549
+ - ext/fox16/include/FXRb4Splitter.h
550
+ - ext/fox16/include/FXRb7Segment.h
551
+ - ext/fox16/include/FXRbAccelTable.h
552
+ - ext/fox16/include/FXRbApp.h
553
+ - ext/fox16/include/FXRbAppVirtuals.h
554
+ - ext/fox16/include/FXRbArrowButton.h
555
+ - ext/fox16/include/FXRbBitmap.h
556
+ - ext/fox16/include/FXRbBitmapFrame.h
557
+ - ext/fox16/include/FXRbBitmapView.h
558
+ - ext/fox16/include/FXRbBitmapVirtuals.h
559
+ - ext/fox16/include/FXRbBMPIcon.h
560
+ - ext/fox16/include/FXRbBMPImage.h
561
+ - ext/fox16/include/FXRbButton.h
562
+ - ext/fox16/include/FXRbCanvas.h
563
+ - ext/fox16/include/FXRbCheckButton.h
564
+ - ext/fox16/include/FXRbChoiceBox.h
565
+ - ext/fox16/include/FXRbColorBar.h
566
+ - ext/fox16/include/FXRbColorDialog.h
567
+ - ext/fox16/include/FXRbColorList.h
568
+ - ext/fox16/include/FXRbColorRing.h
569
+ - ext/fox16/include/FXRbColorSelector.h
570
+ - ext/fox16/include/FXRbColorWell.h
571
+ - ext/fox16/include/FXRbColorWheel.h
572
+ - ext/fox16/include/FXRbComboBox.h
573
+ - ext/fox16/include/FXRbCommon.h
574
+ - ext/fox16/include/FXRbComposite.h
575
+ - ext/fox16/include/FXRbCURCursor.h
576
+ - ext/fox16/include/FXRbCursor.h
577
+ - ext/fox16/include/FXRbCursorVirtuals.h
578
+ - ext/fox16/include/FXRbDataTarget.h
579
+ - ext/fox16/include/FXRbDC.h
580
+ - ext/fox16/include/FXRbDCPrint.h
581
+ - ext/fox16/include/FXRbDCVirtuals.h
582
+ - ext/fox16/include/FXRbDCWindow.h
583
+ - ext/fox16/include/FXRbDebugTarget.h
584
+ - ext/fox16/include/FXRbDelegator.h
585
+ - ext/fox16/include/FXRbDial.h
586
+ - ext/fox16/include/FXRbDialogBox.h
587
+ - ext/fox16/include/FXRbDialogBoxVirtuals.h
588
+ - ext/fox16/include/FXRbDict.h
589
+ - ext/fox16/include/FXRbDirBox.h
590
+ - ext/fox16/include/FXRbDirDialog.h
591
+ - ext/fox16/include/FXRbDirList.h
592
+ - ext/fox16/include/FXRbDirSelector.h
593
+ - ext/fox16/include/FXRbDockBar.h
594
+ - ext/fox16/include/FXRbDockBarVirtuals.h
595
+ - ext/fox16/include/FXRbDockHandler.h
596
+ - ext/fox16/include/FXRbDockSite.h
597
+ - ext/fox16/include/FXRbDockSiteVirtuals.h
598
+ - ext/fox16/include/FXRbDockTitle.h
599
+ - ext/fox16/include/FXRbDocument.h
600
+ - ext/fox16/include/FXRbDragCorner.h
601
+ - ext/fox16/include/FXRbDrawable.h
602
+ - ext/fox16/include/FXRbDrawableVirtuals.h
603
+ - ext/fox16/include/FXRbDriveBox.h
604
+ - ext/fox16/include/FXRbFileDialog.h
605
+ - ext/fox16/include/FXRbFileDict.h
606
+ - ext/fox16/include/FXRbFileDictVirtuals.h
607
+ - ext/fox16/include/FXRbFileList.h
608
+ - ext/fox16/include/FXRbFileSelector.h
609
+ - ext/fox16/include/FXRbFoldingItemVirtuals.h
610
+ - ext/fox16/include/FXRbFoldingList.h
611
+ - ext/fox16/include/FXRbFoldingListVirtuals.h
612
+ - ext/fox16/include/FXRbFont.h
613
+ - ext/fox16/include/FXRbFontDialog.h
614
+ - ext/fox16/include/FXRbFontSelector.h
615
+ - ext/fox16/include/FXRbFontVirtuals.h
616
+ - ext/fox16/include/FXRbFrame.h
617
+ - ext/fox16/include/FXRbGIFCursor.h
618
+ - ext/fox16/include/FXRbGIFIcon.h
619
+ - ext/fox16/include/FXRbGIFImage.h
620
+ - ext/fox16/include/FXRbGLCanvas.h
621
+ - ext/fox16/include/FXRbGLCanvasVirtuals.h
622
+ - ext/fox16/include/FXRbGLContext.h
623
+ - ext/fox16/include/FXRbGLObject.h
624
+ - ext/fox16/include/FXRbGLObjectVirtuals.h
625
+ - ext/fox16/include/FXRbGLShape.h
626
+ - ext/fox16/include/FXRbGLShapeVirtuals.h
627
+ - ext/fox16/include/FXRbGLViewer.h
628
+ - ext/fox16/include/FXRbGLViewerVirtuals.h
629
+ - ext/fox16/include/FXRbGLVisual.h
630
+ - ext/fox16/include/FXRbGradientBar.h
631
+ - ext/fox16/include/FXRbGroupBox.h
632
+ - ext/fox16/include/FXRbHeader.h
633
+ - ext/fox16/include/FXRbHeaderItemVirtuals.h
634
+ - ext/fox16/include/FXRbHorizontalFrame.h
635
+ - ext/fox16/include/FXRbICOIcon.h
636
+ - ext/fox16/include/FXRbICOImage.h
637
+ - ext/fox16/include/FXRbIcon.h
638
+ - ext/fox16/include/FXRbIconItemVirtuals.h
639
+ - ext/fox16/include/FXRbIconList.h
640
+ - ext/fox16/include/FXRbIconListVirtuals.h
641
+ - ext/fox16/include/FXRbIconSource.h
642
+ - ext/fox16/include/FXRbIconSourceVirtuals.h
643
+ - ext/fox16/include/FXRbId.h
644
+ - ext/fox16/include/FXRbIdVirtuals.h
645
+ - ext/fox16/include/FXRbImage.h
646
+ - ext/fox16/include/FXRbImageFrame.h
647
+ - ext/fox16/include/FXRbImageView.h
648
+ - ext/fox16/include/FXRbImageVirtuals.h
649
+ - ext/fox16/include/FXRbInputDialog.h
650
+ - ext/fox16/include/FXRbJPGIcon.h
651
+ - ext/fox16/include/FXRbJPGImage.h
652
+ - ext/fox16/include/FXRbKnob.h
653
+ - ext/fox16/include/FXRbLabel.h
654
+ - ext/fox16/include/FXRbList.h
655
+ - ext/fox16/include/FXRbListBox.h
656
+ - ext/fox16/include/FXRbListBoxVirtuals.h
657
+ - ext/fox16/include/FXRbListItemVirtuals.h
658
+ - ext/fox16/include/FXRbListVirtuals.h
659
+ - ext/fox16/include/FXRbMainWindow.h
660
+ - ext/fox16/include/FXRbMatrix.h
661
+ - ext/fox16/include/FXRbMDIButton.h
662
+ - ext/fox16/include/FXRbMDIChild.h
663
+ - ext/fox16/include/FXRbMDIChildVirtuals.h
664
+ - ext/fox16/include/FXRbMDIClient.h
665
+ - ext/fox16/include/FXRbMDIClientVirtuals.h
666
+ - ext/fox16/include/FXRbMenuBar.h
667
+ - ext/fox16/include/FXRbMenuButton.h
668
+ - ext/fox16/include/FXRbMenuCaption.h
669
+ - ext/fox16/include/FXRbMenuCascade.h
670
+ - ext/fox16/include/FXRbMenuCheck.h
671
+ - ext/fox16/include/FXRbMenuCommand.h
672
+ - ext/fox16/include/FXRbMenuPane.h
673
+ - ext/fox16/include/FXRbMenuRadio.h
674
+ - ext/fox16/include/FXRbMenuSeparator.h
675
+ - ext/fox16/include/FXRbMenuTitle.h
676
+ - ext/fox16/include/FXRbMessageBox.h
677
+ - ext/fox16/include/FXRbObject.h
678
+ - ext/fox16/include/FXRbObjectVirtuals.h
679
+ - ext/fox16/include/FXRbOptionMenu.h
680
+ - ext/fox16/include/FXRbPacker.h
681
+ - ext/fox16/include/FXRbPCXIcon.h
682
+ - ext/fox16/include/FXRbPCXImage.h
683
+ - ext/fox16/include/FXRbPicker.h
684
+ - ext/fox16/include/FXRbPNGIcon.h
685
+ - ext/fox16/include/FXRbPNGImage.h
686
+ - ext/fox16/include/FXRbPopup.h
687
+ - ext/fox16/include/FXRbPopupVirtuals.h
688
+ - ext/fox16/include/FXRbPPMIcon.h
689
+ - ext/fox16/include/FXRbPPMImage.h
690
+ - ext/fox16/include/FXRbPrintDialog.h
691
+ - ext/fox16/include/FXRbProgressBar.h
692
+ - ext/fox16/include/FXRbProgressDialog.h
693
+ - ext/fox16/include/FXRbRadioButton.h
694
+ - ext/fox16/include/FXRbRealSlider.h
695
+ - ext/fox16/include/FXRbRealSpinner.h
696
+ - ext/fox16/include/FXRbRealSpinnerVirtuals.h
697
+ - ext/fox16/include/FXRbRecentFiles.h
698
+ - ext/fox16/include/FXRbRegistry.h
699
+ - ext/fox16/include/FXRbReplaceDialog.h
700
+ - ext/fox16/include/FXRbRGBIcon.h
701
+ - ext/fox16/include/FXRbRGBImage.h
702
+ - ext/fox16/include/FXRbRootWindow.h
703
+ - ext/fox16/include/FXRbRuler.h
704
+ - ext/fox16/include/FXRbScintilla.h
705
+ - ext/fox16/include/FXRbScrollArea.h
706
+ - ext/fox16/include/FXRbScrollAreaVirtuals.h
707
+ - ext/fox16/include/FXRbScrollBar.h
708
+ - ext/fox16/include/FXRbScrollPane.h
709
+ - ext/fox16/include/FXRbScrollWindow.h
710
+ - ext/fox16/include/FXRbSearchDialog.h
711
+ - ext/fox16/include/FXRbSeparator.h
712
+ - ext/fox16/include/FXRbSettings.h
713
+ - ext/fox16/include/FXRbShell.h
714
+ - ext/fox16/include/FXRbShutter.h
715
+ - ext/fox16/include/FXRbShutterVirtuals.h
716
+ - ext/fox16/include/FXRbSlider.h
717
+ - ext/fox16/include/FXRbSpinner.h
718
+ - ext/fox16/include/FXRbSpinnerVirtuals.h
719
+ - ext/fox16/include/FXRbSplashWindow.h
720
+ - ext/fox16/include/FXRbSplitter.h
721
+ - ext/fox16/include/FXRbSpring.h
722
+ - ext/fox16/include/FXRbStatusBar.h
723
+ - ext/fox16/include/FXRbStatusLine.h
724
+ - ext/fox16/include/FXRbStream.h
725
+ - ext/fox16/include/FXRbStreamVirtuals.h
726
+ - ext/fox16/include/FXRbStringDict.h
727
+ - ext/fox16/include/FXRbSwitcher.h
728
+ - ext/fox16/include/FXRbTabBar.h
729
+ - ext/fox16/include/FXRbTabBarVirtuals.h
730
+ - ext/fox16/include/FXRbTabBook.h
731
+ - ext/fox16/include/FXRbTabItem.h
732
+ - ext/fox16/include/FXRbTable.h
733
+ - ext/fox16/include/FXRbTableItemVirtuals.h
734
+ - ext/fox16/include/FXRbTableVirtuals.h
735
+ - ext/fox16/include/FXRbText.h
736
+ - ext/fox16/include/FXRbTextField.h
737
+ - ext/fox16/include/FXRbTextVirtuals.h
738
+ - ext/fox16/include/FXRbTGAIcon.h
739
+ - ext/fox16/include/FXRbTGAImage.h
740
+ - ext/fox16/include/FXRbTIFIcon.h
741
+ - ext/fox16/include/FXRbTIFImage.h
742
+ - ext/fox16/include/FXRbToggleButton.h
743
+ - ext/fox16/include/FXRbToolBar.h
744
+ - ext/fox16/include/FXRbToolBarGrip.h
745
+ - ext/fox16/include/FXRbToolBarShell.h
746
+ - ext/fox16/include/FXRbToolBarTab.h
747
+ - ext/fox16/include/FXRbToolTip.h
748
+ - ext/fox16/include/FXRbTopWindow.h
749
+ - ext/fox16/include/FXRbTopWindowVirtuals.h
750
+ - ext/fox16/include/FXRbTranslator.h
751
+ - ext/fox16/include/FXRbTranslatorVirtuals.h
752
+ - ext/fox16/include/FXRbTreeItemVirtuals.h
753
+ - ext/fox16/include/FXRbTreeList.h
754
+ - ext/fox16/include/FXRbTreeListBox.h
755
+ - ext/fox16/include/FXRbTreeListBoxVirtuals.h
756
+ - ext/fox16/include/FXRbTreeListVirtuals.h
757
+ - ext/fox16/include/FXRbTriStateButton.h
758
+ - ext/fox16/include/FXRbVerticalFrame.h
759
+ - ext/fox16/include/FXRbVisual.h
760
+ - ext/fox16/include/FXRbWindow.h
761
+ - ext/fox16/include/FXRbWindowVirtuals.h
762
+ - ext/fox16/include/FXRbWizard.h
763
+ - ext/fox16/include/FXRbXBMIcon.h
764
+ - ext/fox16/include/FXRbXBMImage.h
765
+ - ext/fox16/include/FXRbXPMIcon.h
766
+ - ext/fox16/include/FXRbXPMImage.h
767
+ - ext/fox16/include/FXRuby.h
768
+ - ext/fox16/include/impl.h
769
+ - ext/fox16/include/inlinestubs.h
756
770
  test_files:
757
771
  - tests/TS_All.rb
758
772
  rdoc_options:
759
773
  - --main
760
774
  - rdoc-sources/README.rdoc
761
775
  - --exclude
762
- - ext/fox14
776
+ - ext/fox16
763
777
  extra_rdoc_files:
764
778
  - rdoc-sources
765
779
  - rdoc-sources/README.rdoc
766
780
  executables: []
767
781
 
768
782
  extensions:
769
- - ext/fox14/extconf.rb
783
+ - ext/fox16/extconf.rb
770
784
  requirements:
771
- - FOX library version 1.4.0 or higher
785
+ - FOX library version 1.6.0 or higher
772
786
  dependencies: []
773
787