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
data/doc/changes.html DELETED
@@ -1,433 +0,0 @@
1
- <html><head>
2
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3
- <title>Chapter&nbsp;10.&nbsp;Change History</title><link rel="stylesheet" href="style.css" type="text/css"><meta name="generator" content="DocBook XSL Stylesheets V1.68.1"><link rel="start" href="book.html" title="Developing Graphical User Interfaces with FXRuby"><link rel="up" href="pt01.html" title="Part&nbsp;I.&nbsp;The Basics"><link rel="prev" href="infosources.html" title="Chapter&nbsp;9.&nbsp;Other Sources of Information"><link rel="next" href="pt02.html" title="Part&nbsp;II.&nbsp;Appendices"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&nbsp;10.&nbsp;Change History</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="infosources.html">Prev</a>&nbsp;</td><th width="60%" align="center">Part&nbsp;I.&nbsp;The Basics</th><td width="20%" align="right">&nbsp;<a accesskey="n" href="pt02.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="changes"></a>Chapter&nbsp;10.&nbsp;Change History</h2></div></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2381"></a>Changes For Version 1.4.6 (April 26, 2006)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>FXRuby would not compile properly on some x86-64 systems (see
4
- <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3729&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
5
- Bug #3729</a>). This error has been corrected. Thanks to Javier
6
- Goizueta for initially reporting this problem, and especially to
7
- Tobias Peters for providing a patch.</p></li><li style="list-style-type: disc"><p>The <code class="classname">FXIconDict</code> widget was accidentally
8
- "lost" in the transition between FXRuby versions 1.2 and 1.4 (see
9
- <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=4117&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
10
- Bug #4117</a>). This error has been corrected. Thanks to Manfred
11
- Usselmann for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="classname">FXSwitcher</code> widget was not sending the
12
- appropriate message data to its message target for the
13
- <code class="constant">SEL_COMMAND</code> message type (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=4157&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
14
- Bug #4157</a>). This error has been corrected. Thanks to Manfred
15
- Usselmann for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="classname">FXSeparator</code> class wasn't implemented
16
- properly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=4158&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
17
- Bug #4158</a>). This error has been corrected. Thanks to Gerard
18
- Menochet for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">findItemByData</code> method was
19
- implemented incorrectly for the <code class="classname">FXComboBox</code>,
20
- <code class="classname">FXFoldingList</code>,
21
- <code class="classname">FXIconList</code>, <code class="classname">FXList</code> and
22
- <code class="classname">FXListBox</code> classes (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=4172&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
23
- Bug #4172</a>). This error has been corrected. Thanks to Gerard
24
- Menochet for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="classname">FXListBox</code> widget was not sending the
25
- appropriate message data to its message target for the
26
- <code class="constant">SEL_COMMAND</code> message type (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=4255&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
27
- Bug #4255</a>). This error has been corrected. Thanks to Gerard
28
- Menochet for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.29 and
29
- FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2460"></a>Changes For Version 1.4.5 (April 10, 2006)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The <code class="classname">FXTextField</code> class was not properly
30
- responding to the <code class="constant">ID_INSERT_STRING</code> command (see
31
- <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3320&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
32
- Bug #3320</a>). This error has been corrected. Thanks to Uwe Hartl
33
- for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">text</code> and
34
- <code class="methodname">getText</code> methods for the
35
- <code class="classname">FXMenuCaption</code> class were returning
36
- <code class="constant">nil</code> instead of the actual value (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3458&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
37
- Bug #3458</a>). This error has been corrected. Thanks to Meinrad
38
- Recheis (Henon) for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXMDIChild</code>
39
- class erroneously listed <code class="constant">SEL_CLOSEALL</code> as one of
40
- the message types that an MDI child window might send to its message
41
- target (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3508&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
42
- Bug #3508</a>). This error has been corrected. Thanks to Meinrad
43
- Recheis (Henon) for reporting this problem.</p></li><li style="list-style-type: disc"><p>Calling the <code class="methodname">selectRange</code> method for
44
- class <code class="classname">FXTable</code> would cause a fatal error instead
45
- of merely raising an <code class="classname">IndexError</code> exception (see
46
- <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3615&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
47
- Bug #3615</a>). This error has been corrected. Thanks to Meinrad
48
- Recheis (Henon) for reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to an error in the SWIG interface files, the
49
- <code class="classname">FXChoiceBox</code> class was basically unusable (see
50
- <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3676&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
51
- Bug #3676</a>). This error has been corrected. Thanks to Uwe Hartl
52
- for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the
53
- <code class="classname">FXRealSlider</code> and
54
- <code class="classname">FXRealSpinner</code> classes erroneously claimed that
55
- the message data for the <code class="constant">SEL_COMMAND</code> and
56
- <code class="constant">SEL_CHANGED</code> messages sent by these widgets to
57
- their targets were integers (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3749&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
58
- Bug #3749</a>). Along the same lines, the message data for those
59
- widgets wasn't being converted correctly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3750&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
60
- Bug #3750</a>). Both of these errors have been corrected. Thanks
61
- to Meinrad Recheis (Henon) for reporting these problems.</p></li><li style="list-style-type: disc"><p>The API documentation for the Fox module incorrectly listed the
62
- names of the <code class="methodname">FXSELTYPE</code> and
63
- <code class="methodname">FXSELID</code> methods as
64
- <code class="methodname">SELTYPE</code> and <code class="methodname">SELID</code>
65
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3940&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
66
- Bug #3940</a>). This error has been corrected. Thanks to Joel
67
- VanderWerf for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="classname">FXTableItem</code> constructor was supposed
68
- to (optionally) accept a reference to an arbitrary Ruby object as its
69
- third argument, but this wasn't working properly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=4005&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
70
- Bug #4005</a>). This error has been corrected. Thanks to Mark
71
- Volkman for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.29 and
72
- FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2581"></a>Changes For Version 1.4.4 (January 21, 2006)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The build instructions for Unix platforms had not been updated
73
- recently and as such contained some errors (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3014&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
74
- Bug #3014</a>). These errors have been corrected. Thanks to Dave
75
- Burns for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">extendSelection</code> method for the
76
- <code class="classname">FXTable</code> class was raising an exception if an
77
- out of bounds row or column index was passed in (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3050&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
78
- Bug #3050</a>). This has been changed so that
79
- <code class="methodname">extendSelection</code> instead returns false for out
80
- of bounds arguments. Thanks to Leonid Moiseichuk for reporting this
81
- problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">each_child</code> iterator method for the
82
- <code class="classname">FXWindow</code> class would fail if the child window
83
- was destroyed in the block (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3134&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
84
- Bug #3134</a>). Thanks to Liam Irish for reporting this problem
85
- and providing a patch.</p></li><li style="list-style-type: disc"><p>The message data for the <code class="constant">SEL_REPLACED</code>
86
- message sent by the <code class="classname">FXTable</code> class to its target
87
- was not being handled properly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=3244&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
88
- Bug #3244</a>). There were also problems with the message data for
89
- the <code class="constant">SEL_SELECTED</code> and
90
- <code class="constant">SEL_DESELECTED</code> messages. Furthermore, the
91
- <code class="constant">SEL_REPLACED</code> message was not documented in the
92
- RDoc documentation for the <code class="classname">FXTable</code> class. All
93
- of these problems have been corrected. Thanks to _blackdog for
94
- reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.29 and
95
- FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2645"></a>Changes For Version 1.4.3 (November 7, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The <code class="constant">TOGGLEBUTTON_KEEPSTATE</code> option for the
96
- <code class="classname">FXToggleButton</code> class was not documented (see
97
- <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2286&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
98
- Bug #2286</a>). This oversight has been corrected. Thanks to Tim
99
- Smith for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="filename">scintilla.rb</code> library file was not up to
100
- date with the latest FXScintilla release, and as a result it was
101
- missing some methods (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2479&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
102
- Bug #2479</a>). This oversight has been corrected. Thanks to Maxim
103
- Kulkin for reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to changes in the APIs for timers and chores, the mechanisms
104
- for removing chores and timeouts were broken (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2563&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
105
- Bug #2563</a>). This bug has been fixed. Thanks to "moinker" for
106
- reporting this problem.</p></li><li style="list-style-type: disc"><p>An error in the test setup caused all of the tests for the
107
- <code class="classname">FXList</code> class to fail (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2564&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
108
- Bug #2564</a>). This bug has been fixed. Thanks to Peter for
109
- reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to a bug in the test suite runner script, not all test cases
110
- were being exercised (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2565&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
111
- Bug #2565</a>). This bug has been fixed.</p></li><li style="list-style-type: disc"><p>Calling the <code class="methodname">getPixel</code> method for the
112
- <code class="classname">FXImage</code> class when the client-side pixel buffer
113
- for the image has already been released would cause a program to crash
114
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2611&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
115
- Bug #2611</a>). Now, <code class="methodname">getPixel</code> will raise
116
- an exception if it's called after the pixel buffer has been released.
117
- The documentation for <code class="methodname">getPixel</code> has been
118
- updated accordingly. Thanks to Gonzalo Garramuno for reporting this
119
- problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">makePositionVisible</code> method for the
120
- <code class="classname">FXTable</code> class was raising an exception when
121
- passed out-of-bounds values for the row or column index (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2660&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
122
- Bug #2660</a>). This could happen, for example, if you were to
123
- click in a table area outside of the regular cells (which indirectly
124
- triggers a call to <code class="methodname">makePositionVisible</code>). This
125
- was actually inconsistent with standard FOX behavior, which simply
126
- ignores out of bounds values for that method's arguments. This bug has
127
- been fixed, and the documentation for
128
- <code class="methodname">makePositionVisible</code> has been updated
129
- accordingly. Thanks to Ralf Jonas for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.21 and
130
- FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2730"></a>Changes For Version 1.4.2 (August 22, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Due to a bug in the implementation, the
131
- <code class="methodname">checked?</code> method for the
132
- <code class="classname">FXCheckButton</code> class always returned
133
- <code class="constant">false</code> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1852&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
134
- Bug #1852</a>). This bug has been fixed. Thanks to Meinrad Recheis
135
- for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXTable</code>
136
- class listed several obsolete attributes (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1928&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
137
- Bug #1928</a>). Those errors have been corrected. Thanks to Pavel
138
- Sokolov for reporting these problems.</p></li><li style="list-style-type: disc"><p>There were a number of bugs in the
139
- <code class="filename">textedit.rb</code> example program (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1979&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
140
- Bug #1979</a>), and those bugs have been fixed. Thanks to Claude
141
- Marinier for reporting these problems.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXTreeList</code>
142
- class' <code class="methodname">new</code> method still showed the number of
143
- visible items (<em class="parameter"><code>nvis</code></em>) as its second argument
144
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2171&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
145
- Bug #2171</a>). This problem has been corrected. Thanks to Bill
146
- Atkins for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXTopWindow</code>
147
- class had a number of errors (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2269&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
148
- Bug #2269</a>). This problem has been corrected.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXTreeList</code>
149
- class still listed the obsolete <code class="methodname">reparentItem</code>
150
- method (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2270&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
151
- Bug #2270</a>). This problem has been corrected. Thanks to Jacob
152
- Hansen for reporting this problem.</p></li><li style="list-style-type: disc"><p>Due to a bug in how the SWIG typemaps for the
153
- <span class="type">FXlong</span> type were defined, some methods for the
154
- <code class="classname">FXFileStream</code> class were broken (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=2275&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
155
- Bug #2275</a>). This problem has been corrected. Thanks to Gonzalo
156
- Garramuno for reporting this problem.</p></li><li style="list-style-type: disc"><p>Merged in all of the fixes for FXRuby 1.2.6.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.17 and
157
- FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2821"></a>Changes For Version 1.4.1 (August 20, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the second release of FXRuby which is compatible with
158
- FOX 1.4, and as such should be considered an "unstable" release. For a
159
- history of the changes made during the FOX 1.3 and 1.4 development,
160
- see the <a href="http://www.fox-toolkit.com/news.html" target="_top">News</a>
161
- page at the FOX Web site.</p></li><li style="list-style-type: disc"><p>The unit tests (in the <code class="filename">tests</code> subdirectory)
162
- had not been updated to require the <code class="constant">fox14</code>
163
- feature, and were still looking at <code class="constant">fox12</code>. This
164
- has been corrected.</p></li><li style="list-style-type: disc"><p>A number of minor problems were corrected for the Windows build
165
- of FXRuby.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.4.17 and
166
- FXScintilla version 1.63.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2849"></a>Changes For Version 1.4.0 (August 19, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the first release of FXRuby which is compatible with FOX
167
- 1.4, and as such should be considered an "unstable" release. For a
168
- history of the changes made during the FOX 1.3 and 1.4 development,
169
- see the <a href="http://www.fox-toolkit.com/news.html" target="_top">News</a>
170
- page at the FOX Web site.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2859"></a>Changes For Version 1.2.6 (April 15, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Some additional problems related to calling the
171
- <code class="methodname">setTableSize</code> method for an
172
- <code class="classname">FXTable</code> were discovered (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1597&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
173
- Bug #1597</a>). This problem has been corrected. Thanks to Joel
174
- VanderWerf for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="filename">iconlist.rb</code> example program had a
175
- "Sort" pulldown menu filled with a number of commands that didn't
176
- really do anything, including sorting the items (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1654&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
177
- Bug #1654</a>). This pulldown menu has been removed from that
178
- example.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXDC</code> class
179
- erroneously referred to the <code class="methodname">font</code> attribute as
180
- <code class="methodname">textFont</code> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1667&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
181
- Bug #1667</a>). This problem has been corrected. Thanks to Meinrad
182
- Recheis for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">checked?</code>,
183
- <code class="methodname">unchecked?</code> and
184
- <code class="methodname">maybe?</code> methods for the
185
- <code class="classname">FXMenuCheck</code> class were missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1677&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
186
- Bug #1677</a>). This problem has been corrected. Thanks to Oliver
187
- Smith for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the
188
- <code class="classname">FXScrollArea</code> class incorrectly spelled the
189
- names of the <code class="methodname">horizontalScrollBar</code> and
190
- <code class="methodname">verticalScrollBar</code> methods as
191
- <code class="methodname">horizontalScrollbar</code> and
192
- <code class="methodname">verticalScrollbar</code> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1678&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
193
- Bug #1678</a>). The documentation has been corrected. Thanks to
194
- Jannis Pohlmann for reporting this mistake.</p></li><li style="list-style-type: disc"><p>Some code in the <code class="filename">groupbox.rb</code> example
195
- program was calling the <code class="methodname">getRootWindow</code> method,
196
- but that method has been renamed to <code class="methodname">getRoot</code>
197
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1692&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
198
- Bug #1692</a>). This problem has been corrected. Thanks to
199
- Jaroslav Stika for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">hasChar?</code> method for the
200
- <code class="classname">FXFont</code> class was spelled without a trailing
201
- question mark, but it seems more Ruby-like that it should, so we've
202
- added an alias for that (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1714&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
203
- Bug #1714</a>). This method also now accepts a string of size 1
204
- (i.e. a single character) as its input, as an alternative to an
205
- ordinal value. Thanks to Meinrad Recheis for these suggestions.</p></li><li style="list-style-type: disc"><p>The API documentation for the <code class="classname">FXImage</code>
206
- class mistakenly listed <code class="constant">IMAGE_ALPHA</code> as a valid
207
- image rendering hint, but this flag is no longer needed since FOX
208
- images now always contain an alpha channel (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1715&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
209
- Bug #1715</a>). The documentation has been corrected. Thanks to
210
- Meinrad Recheis for reporting this mistake.</p></li><li style="list-style-type: disc"><p>Due to an error in the SWIG interface files, the
211
- <code class="methodname">data</code> method for the
212
- <code class="classname">FXSettings</code> class was not being wrapped
213
- properly. As a result, this method was unavailable and in turn led to
214
- other dependent methods (like <code class="methodname">each_section</code>)
215
- to be unavailable as well (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1771&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
216
- Bug #1771</a>). This error has been corrected. Thanks to Jannis
217
- Pohlmann for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.16 and
218
- FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e2995"></a>Changes For Version 1.2.5 (March 1, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>The change made for FXRuby version 1.2.4 regarding garbage
219
- collection for table items corrected only one of the problems
220
- described in <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1445&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
221
- Bug #1445</a>; There was still a problem related to the
222
- "destructive" effects of the <code class="methodname">setTableSize</code>
223
- method for the <code class="classname">FXTable</code> class. This problem has
224
- now been corrected as well. Thanks to David Peoples, Jamey Cribbs and
225
- Joel VanderWerf for their assistance in helping me to track down this
226
- problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">extractText</code> and
227
- <code class="methodname">overlayText</code> methods for the
228
- <code class="classname">FXTable</code> class were implemented incorrectly and
229
- weren't listed in the API documentation. These problems have been
230
- corrected.</p></li><li style="list-style-type: disc"><p>The checks for out-of-bounds indices in the
231
- <code class="methodname">getColumnX</code>,
232
- <code class="methodname">setColumnX</code>, <code class="methodname">getRowY</code>,
233
- <code class="methodname">setRowY</code> and
234
- <code class="methodname">updateRange</code> methods for the
235
- <code class="classname">FXTable</code> class were incorrect. These have been
236
- fixed.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">setTableSize</code> method for the
237
- <code class="classname">FXTable</code> class now raises
238
- <code class="classname">ArgError</code> if either the number of rows or
239
- columns passed in as arguments is less than zero.</p></li><li style="list-style-type: disc"><p>A typo in one of the source files was causing the build to fail
240
- when compiled against Ruby versions 1.8.1 or earlier (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1551&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
241
- Bug #1551</a>). This error has been corrected. Thanks to Alex
242
- McGuire for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">selectItem</code> method for the
243
- <code class="classname">FXTable</code> class was removed in FOX 1.2, so we've
244
- added a convenience method for this that just calls the
245
- <code class="methodname">selectRange</code> method under the hood (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1562&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
246
- Bug #1562</a>). Thanks to Joel VanderWerf for this
247
- suggestion.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.13 and
248
- FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3080"></a>Changes For Version 1.2.4 (February 23, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Due to a change in some of the internal Ruby C APIs, a
249
- compile-time error for FXRuby was introduced in some of the Ruby 1.8.2
250
- preview releases (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1039&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
251
- Bug #1039</a>). One should not see any compile-time errors when
252
- compiling FXRuby (versions 1.2.3 or later) against the Ruby 1.8.2
253
- final release, but I've neverthless made a change to how those
254
- internal APIs are used, to avoid any potential problems. Thanks to the
255
- many users who pointed out this problem.</p></li><li style="list-style-type: disc"><p>Joel VanderWerf suggested some enhancements to the
256
- <code class="filename">image.rb</code> example program in order to improve its
257
- startup time (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1281&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
258
- Bug #1281</a>). Those changes have been incorporated. Thanks to
259
- Joel for this suggestion.</p></li><li style="list-style-type: disc"><p>One change for the <code class="classname">FXImage</code> class between
260
- FOX versions 1.0 and 1.2 is the nature of the pixel buffer that's
261
- passed to the <code class="classname">FXImage</code> constructor. Previously,
262
- this pixel buffer was expected to be a string of bytes; now it's
263
- expected to be an array of <span class="type">FXColor</span> values. This
264
- modification was not implemented correctly for FXRuby versions 1.2.3
265
- and earlier (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1427&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
266
- Bug #1427</a>). This bug has been corrected, and the example
267
- program (<code class="filename">image.rb</code>) and test cases have been
268
- updated as well. Thanks to Oliver Smith and others for reporting this
269
- problem.</p></li><li style="list-style-type: disc"><p>A couple of different problems, reported by Patrick Fernie and
270
- David Peoples, exposed a flaw in how FXRuby manages the links between
271
- FOX objects and their Ruby peers when the FOX objects are destroyed
272
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1445&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
273
- Bug #1445</a>). Without going into all the gory details, let's
274
- just say that since we have no explicit control over when Ruby's
275
- garbage collector decides to "collect" those Ruby peers that point to
276
- C++ objects that have been destroyed, we need to take steps to
277
- neutralize those Ruby peer objects so that they can't cause your
278
- application to crash in the meantime; I've implemented a fix to take
279
- care of this situation. Thanks to Patrick and David for reporting
280
- these problems.</p></li><li style="list-style-type: disc"><p>The API documentation for FXRuby 1.2 still contained references
281
- to the old "spellings" of the <code class="methodname">fxparseAccel</code>
282
- and <code class="methodname">fxparseHotKey</code> method names, which were
283
- all lowercase (i.e. <code class="methodname">fxparseaccel</code> and
284
- <code class="methodname">fxparsehotkey</code>). (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1470&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
285
- Bug #1470</a>). These errors have been corrected.</p></li><li style="list-style-type: disc"><p>Added the <code class="methodname">FXScrollArea#scrollCorner</code>
286
- method, which returns a reference to the scroll corner for any window
287
- derived from <code class="classname">FXScrollArea</code> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=843&amp;group_id=300&amp;atid=1226" target="_top">RubyForge
288
- Feature Request #1226</a>). Thanks to Brian Sheehan for this
289
- suggestion.</p></li><li style="list-style-type: disc"><p>Added the <code class="methodname">FXMemoryBuffer#to_a</code> method,
290
- which is just an alias for the <code class="methodname">data</code> accessor
291
- method that returns a copy of the data buffer as an array (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1295&amp;group_id=300&amp;atid=1226" target="_top">RubyForge
292
- Feature Request #1295</a>). Thanks to Meinrad Recheis for this
293
- suggestion.</p></li><li style="list-style-type: disc"><p>Added the <code class="methodname">appendRows</code> and
294
- <code class="methodname">appendColumns</code> methods to the
295
- <code class="classname">FXTable</code> class (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1426&amp;group_id=300&amp;atid=1226" target="_top">RubyForge
296
- Feature Request #1295</a>). Thanks to Brett Hallett for this
297
- suggestion.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.13 and
298
- FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3183"></a>Changes For Version 1.2.3 (January 22, 2005)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>Since group boxes containing radio buttons no longer enforce the
299
- radio behavior of radio buttons (i.e. keeping only one radio button
300
- selected at a time), some of the example programs were no longer
301
- working as desired (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=751&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
302
- Bug #751</a> and <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1280&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
303
- Bug #1280</a>). This problem has been corrected. Thanks to Yuri
304
- Leikind and Barry DeZonia for reporting this problem.</p></li><li style="list-style-type: disc"><p>Bob Sidebotham reported a little typo in the
305
- <code class="filename">table.rb</code> example program (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=990&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
306
- Bug #990</a>). This has been corrected.</p></li><li style="list-style-type: disc"><p>The API documentation for <code class="classname">FXList</code> did not
307
- reflect the changes for FOX 1.2; the
308
- <code class="methodname">retrieveItem()</code> has been renamed to
309
- <code class="methodname">getItem()</code> and
310
- <code class="methodname">insertItem()</code> has been renamed to
311
- <code class="methodname">setItem()</code> (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1037&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
312
- Bug #1037</a> and <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1257&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
313
- Bug #1257</a>). This has been corrected. Thanks to Remy Drouilhet
314
- and Stephan Kamper for reporting this problem.</p></li><li style="list-style-type: disc"><p>The Windows installer was missing some of the documentation
315
- files (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1139&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
316
- Bug #1139</a>). This has been corrected. Thanks to Curt Hibbs and
317
- Mark Smith for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="filename">browser.rb</code> example program was broken
318
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1146&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
319
- Bug #1146</a>). This has been corrected. Thanks to Stefan Lang for
320
- reporting this problem.</p></li><li style="list-style-type: disc"><p>The attribute setter for
321
- <code class="methodname">FXHeaderItem#justification</code> was defined
322
- incorrectly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1276&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
323
- Bug #1276</a>). This has been corrected. Thanks to Joel VanderWerf
324
- for reporting this problem (and providing a patch to fix it).</p></li><li style="list-style-type: disc"><p>The <code class="methodname">filenames</code> alias for the
325
- <code class="methodname">FXFileDialog#getFilenames()</code> instance method
326
- was missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1277&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
327
- Bug #1277</a>). This error has been corrected. Thanks to Barry
328
- DeZonia for reporting this problem.</p></li><li style="list-style-type: disc"><p>The API documentation for the
329
- <code class="classname">FXFileDialog</code> class methods
330
- <code class="methodname">getOpenFilenames()</code>,
331
- <code class="methodname">getOpenDirectory()</code>,
332
- <code class="methodname">getOpenFilename()</code> and
333
- <code class="methodname">getSaveFilename()</code> was extremely inadequate
334
- (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1279&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
335
- Bug #1279</a>). This documentation has been improved. Thanks to
336
- Barry DeZonia for reporting this problem.</p></li><li style="list-style-type: disc"><p>Brett Hallett contributed a Ruby port of the "ratio" example
337
- program from the regular FOX distribution, for demonstrating the use
338
- of the new <code class="classname">FXSpring</code> layout manager (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1282&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
339
- Bug #1282</a>). Many thanks to Brett for this addition!</p></li><li style="list-style-type: disc"><p>Joel VanderWerf contributed code to simplify how programs
340
- interact with modal and non-modal dialog boxes (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1283&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
341
- Bug #1283</a>). See the API documentation for the new
342
- <code class="methodname">FXDialogBox#execute_modal</code> and
343
- <code class="methodname">FXDialogBox#execute_nonmodal</code> methods for
344
- examples of their use.</p></li><li style="list-style-type: disc"><p>The attribute setters for
345
- <code class="methodname">FXRealSpinner#selBackColor</code> and
346
- <code class="methodname">FXSpinner#selBackColor</code> were defined
347
- incorrectly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1297&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
348
- Bug #1297</a>). These have been corrected. Thanks to Meinrad
349
- Recheis for reporting this problem.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">tooltipPause</code> attribute reader for
350
- the <code class="classname">FXApp</code> class was missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1306&amp;group_id=300&amp;atid=1225" target="_top">RubyForge
351
- Patch #1306</a>). Thanks to Joel VanderWerf for reporting this
352
- omission and providing a patch to fix it.</p></li><li style="list-style-type: disc"><p>The API documentation for the
353
- <code class="classname">FXToolBarTab</code> class was missing (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1322&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
354
- Bug #1322</a>). Thanks to Joel VanderWerf for reporting this
355
- omission.</p></li><li style="list-style-type: disc"><p>The attribute accessors for
356
- <code class="methodname">FXText#visibleRows</code> and
357
- <code class="methodname">FXText#visibleColumns</code> were defined and
358
- documented incorrectly (see <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=1325&amp;group_id=300&amp;atid=1223" target="_top">RubyForge
359
- Bug #1325</a>). These have been corrected. Thanks to Karl El-Koura
360
- for reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.13 and
361
- FXScintilla version 1.62.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3355"></a>Changes For Version 1.2.2 (October 1, 2004)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>In order to avoid versioning problems when dealing with a mix of
362
- applications based on either FXRuby 1.0 or 1.2, the feature name for
363
- FXRuby has been changed from "fox" to "fox12". For most application
364
- developers, this means that you will need to modify the source code
365
- for applications targeted at FXRuby 1.2 to begin with the line</p><pre class="programlisting">require 'fox12'</pre><p>Note that no
366
- changes should be required for legacy applications targeted at FXRuby
367
- 1.0.</p></li><li style="list-style-type: disc"><p>Made a number of updates to the documentation, to reflect API
368
- changes for FXRuby 1.2.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.9 and
369
- FXScintilla version 1.61.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3372"></a>Changes For Version 1.2a2 (July 10, 2004)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the second "alpha" release of FXRuby 1.2. This release
370
- should be compatible with any FOX library version 1.2; it is not
371
- compatible with any previous FOX library versions. As this is an alpha
372
- release, users should expect a certain amount of instability, bugs,
373
- etc.</p></li><li style="list-style-type: disc"><p>For this release, all of the FOX 1.2 classes are available with
374
- the exception of the <code class="classname">FXBitmapView</code> class. There
375
- is a small problem with how the <code class="classname">FXBitmapView</code>
376
- class is declared in the FOX 1.2 header files, and I'm trying to
377
- decide how best to resolve that problem. The goal is to have this
378
- problem resolved by the next alpha release of FXRuby.</p></li><li style="list-style-type: disc"><p>For this release, all of the RDoc-based online documentation has
379
- been brought up to date with the new APIs.</p></li><li style="list-style-type: disc"><p>Portions of the FXRuby User's Guide were still out of date with
380
- respect to the new APIs (see <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=988623&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
381
- Bug #988623</a>). This has been fixed.</p></li><li style="list-style-type: disc"><p>The <code class="filename">mditest.rb</code> example program was not up
382
- to date with the new APIs. This has been fixed.</p></li><li style="list-style-type: disc"><p>The <code class="filename">glviewer.rb</code> example program was not up
383
- to date with the new APIs (see <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=986479&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
384
- Bug #986479</a>). This has been fixed. Thanks to Remy Drouilhet
385
- for reporting this problem and suggesting the fixes.</p></li><li style="list-style-type: disc"><p>The <code class="methodname">FXGLGroup#bounds</code> method was defined
386
- incorrectly (see <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=986476&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
387
- Bug #986476</a>). This has been fixed. Thanks to Remy Drouilhet
388
- for reporting this problem and suggesting the fix.</p></li><li style="list-style-type: disc"><p>The <code class="filename">scintilla-test.rb</code> example program was
389
- not up to date with the new APIs (see <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=986172&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
390
- Bug #986172</a>). This has been fixed. Thanks to Peter Watkins for
391
- reporting this problem and submitting a corrected version of the
392
- program.</p></li><li style="list-style-type: disc"><p>There was a small typo in the table.rb example program (see
393
- <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=988152&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
394
- Bug #988152</a>). This has been fixed. Thanks to Jamey Cribbs for
395
- reporting this problem and suggesting the fix.</p></li><li style="list-style-type: disc"><p>Due to an oversight on my part, one of the overloaded
396
- constructors for the <code class="classname">FXRegion</code> class wasn't
397
- wrapped properly (see <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=986181&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
398
- Bug #986181</a>). This has been fixed. Thanks to Bil Bas for
399
- reporting this problem.</p></li><li style="list-style-type: disc"><p>Removed some obsolete aliases for the old leading and trailing
400
- rows and columns for the <code class="classname">FXTable</code> class (see
401
- <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=986181&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
402
- Bug #988038</a>). Thanks to Yuri Leikind for reporting this
403
- problem.</p></li><li style="list-style-type: disc"><p>Added <code class="classname">FXTable</code> instance methods
404
- <code class="methodname">horizontalGridShown=()</code> and
405
- <code class="methodname">verticalGridShown=()</code> to complement the
406
- already available <code class="methodname">horizontalGridShown?</code> and
407
- <code class="methodname">verticalGridShown?</code> methods.</p></li><li style="list-style-type: disc"><p>The binary gem for the 1.2a1 release on Windows didn't have PNG
408
- or JPEG image support built-in (see <a href="http://sourceforge.net/tracker/index.php?func=detail&amp;aid=986180&amp;group_id=20243&amp;atid=120243" target="_top">SourceForge
409
- Bug #986180</a>). This has been fixed. Thanks to Bil Bas for
410
- reporting this problem.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.7 and
411
- FXScintilla version 1.61.</p></li></ul></div></div><div class="simplesect" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="d0e3481"></a>Changes For Version 1.2a1 (June 28, 2004)</h2></div></div></div><div class="itemizedlist"><ul type="bullet"><li style="list-style-type: disc"><p>This is the first "alpha" release of FXRuby 1.2. This release
412
- should be compatible with any FOX library version 1.2; it is not
413
- compatible with any previous FOX library versions. As this is an alpha
414
- release, users should expect a certain amount of instability, bugs,
415
- etc.</p><p>The intent of this first alpha release is twofold. The primary
416
- intent is allow application developers who have current projects based
417
- on FXRuby 1.0 to begin the process of updating their applications for
418
- compatibility with FXRuby 1.2. For this release, all of the classes
419
- that existed in FXRuby 1.0 have been updated for compatibility with
420
- FOX 1.2, and so developers should at least be able to begin to "port"
421
- their applications forward now. Note that there have been a number of
422
- changes for FOX 1.2 and FXRuby 1.2, both in terms of API changes and
423
- less obvious "behavioral" changes. For a detailed summary of these
424
- changes, please see <a href="http://www.knology.net/~lyle/fox/1.2/WhatsNew.html" target="_top">"What's New
425
- in FOX 1.2"</a> (also available as a <a href="http://www.knology.net/~lyle/fox/1.2/WhatsNew.pdf" target="_top">PDF</a>).
426
- Note that few, if any, of the new classes introduced in FOX 1.2 are
427
- available in this first alpha release of FXRuby 1.2. Support for those
428
- new classes should come along quickly in subsequent alpha releases of
429
- FXRuby 1.2.</p><p>The secondary intent of this first alpha release is to introduce
430
- the new <a href="http://rubygems.rubyforge.org" target="_top">RubyGems</a>-based packaging
431
- of FXRuby and to begin to work out the inevitable kinks in that
432
- system.</p></li><li style="list-style-type: disc"><p>The binary gem for Windows was built with FOX version 1.2.4 and
433
- FXScintilla version 1.57.</p></li></ul></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="infosources.html">Prev</a>&nbsp;</td><td width="20%" align="center"><a accesskey="u" href="pt01.html">Up</a></td><td width="40%" align="right">&nbsp;<a accesskey="n" href="pt02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter&nbsp;9.&nbsp;Other Sources of Information&nbsp;</td><td width="20%" align="center"><a accesskey="h" href="book.html">Home</a></td><td width="40%" align="right" valign="top">&nbsp;Part&nbsp;II.&nbsp;Appendices</td></tr></table></div></body></html>
@@ -1,70 +0,0 @@
1
- /***********************************************************************
2
- * FXRuby -- the Ruby language bindings for the FOX GUI toolkit.
3
- * Copyright (c) 2001-2003 by J. Lyle Johnson. All Rights Reserved.
4
- *
5
- * This library is free software; you can redistribute it and/or
6
- * modify it under the terms of the GNU Lesser General Public
7
- * License as published by the Free Software Foundation; either
8
- * version 2.1 of the License, or (at your option) any later version.
9
- *
10
- * This library is distributed in the hope that it will be useful,
11
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
- * Lesser General Public License for more details.
14
- *
15
- * You should have received a copy of the GNU Lesser General Public
16
- * License along with this library; if not, write to the Free Software
17
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
- *
19
- * For further information please contact the author by e-mail
20
- * at "lyle@users.sourceforge.net".
21
- ***********************************************************************/
22
-
23
- /***********************************************************************
24
- * $Id: FXRbFont.h 2372 2006-04-20 00:38:08Z lyle $
25
- ***********************************************************************/
26
-
27
- #ifndef FXRBFONT_H
28
- #define FXRBFONT_H
29
-
30
- class FXRbFont : public FXFont {
31
- FXDECLARE(FXRbFont)
32
- protected:
33
- FXRbFont(){}
34
- #include "FXRbObjectVirtuals.h"
35
- #include "FXRbIdVirtuals.h"
36
- public:
37
- // Is this font owned by the FXApp?
38
- FXbool ownedByApp;
39
-
40
- public:
41
- /// Construct font from font description
42
- FXRbFont(FXApp* a,const FXFontDesc& fontdesc) : FXFont(a,fontdesc),ownedByApp(FALSE){
43
- FXRbRegisterAppSensitiveObject(this);
44
- }
45
-
46
- /// Construct a font with given face name, size in points(pixels), weight, slant, character set encoding, setwidth, and hints
47
- FXRbFont(FXApp* a,const FXString& face,FXuint sz,FXuint wt=FONTWEIGHT_NORMAL,FXuint sl=FONTSLANT_REGULAR,FXuint enc=FONTENCODING_DEFAULT,FXuint setw=FONTSETWIDTH_DONTCARE,FXuint h=0) : FXFont(a,face,sz,wt,sl,enc,setw,h),ownedByApp(FALSE){
48
- FXRbRegisterAppSensitiveObject(this);
49
- }
50
-
51
- /// Construct a font with given X11 font string
52
- FXRbFont(FXApp* a,const FXString& nm) : FXFont(a,nm),ownedByApp(FALSE){
53
- FXRbRegisterAppSensitiveObject(this);
54
- }
55
-
56
- // Mark dependencies for the GC
57
- static void markfunc(FXFont* self);
58
-
59
- // Destroy this object if it's not owned
60
- static void freefunc(FXFont* self);
61
-
62
- // Destructor
63
- virtual ~FXRbFont(){
64
- FXTRACE((100,"FXRbFont::~FXRbFont() %p\n",this));
65
- FXRbUnregisterRubyObj(this);
66
- FXRbUnregisterAppSensitiveObject(this);
67
- }
68
- };
69
-
70
- #endif