fxruby 1.2.6 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (437) hide show
  1. data/ChangeLog +0 -90
  2. data/doc/apes02.html +2 -2
  3. data/doc/apes03.html +1 -1
  4. data/doc/book.html +1 -1
  5. data/doc/build.html +26 -26
  6. data/doc/ch03s02.html +1 -2
  7. data/doc/ch03s03.html +1 -2
  8. data/doc/ch03s04.html +1 -2
  9. data/doc/ch03s05.html +1 -2
  10. data/doc/changes.html +12 -7
  11. data/doc/cvs.html +2 -2
  12. data/doc/differences.html +3 -3
  13. data/doc/gems.html +44 -44
  14. data/doc/implementation.html +1 -1
  15. data/doc/library.html +5 -5
  16. data/doc/opengl.html +5 -5
  17. data/doc/pt02.html +1 -1
  18. data/doc/scintilla.html +6 -6
  19. data/doc/tutorial1.html +8 -15
  20. data/examples/babelfish.rb +6 -16
  21. data/examples/bounce.rb +1 -1
  22. data/examples/browser.rb +1 -1
  23. data/examples/button.rb +1 -1
  24. data/examples/datatarget.rb +2 -2
  25. data/examples/dctest.rb +1 -1
  26. data/examples/dialog.rb +1 -1
  27. data/examples/dilbert.rb +2 -2
  28. data/examples/dirlist.rb +1 -1
  29. data/examples/dragdrop.rb +1 -1
  30. data/examples/dragsource.rb +1 -1
  31. data/examples/dropsite.rb +1 -1
  32. data/examples/foursplit.rb +1 -1
  33. data/examples/gltest.rb +2 -2
  34. data/examples/glviewer.rb +4 -4
  35. data/examples/groupbox.rb +2 -2
  36. data/examples/header.rb +3 -3
  37. data/examples/hello.rb +1 -1
  38. data/examples/hello2.rb +1 -1
  39. data/examples/iconlist.rb +16 -1
  40. data/examples/image.rb +2 -2
  41. data/examples/imageviewer.rb +1 -1
  42. data/examples/inputs.rb +1 -1
  43. data/examples/mditest.rb +2 -2
  44. data/examples/pig.rb +1 -1
  45. data/examples/raabrowser.rb +2 -2
  46. data/examples/ratio.rb +2 -2
  47. data/examples/scintilla-test.rb +2 -2
  48. data/examples/scribble-orig.rb +3 -3
  49. data/examples/scribble.rb +1 -1
  50. data/examples/shutter.rb +1 -1
  51. data/examples/splitter.rb +1 -1
  52. data/examples/styledtext.rb +2 -2
  53. data/examples/tabbook.rb +1 -1
  54. data/examples/table.rb +1 -1
  55. data/ext/{fox12 → fox14}/FXRbApp.cpp +7 -13
  56. data/ext/{fox12 → fox14}/FXRbDataTarget.cpp +5 -1
  57. data/ext/{fox12 → fox14}/FXRbGLViewer.cpp +1 -1
  58. data/ext/{fox12 → fox14}/FXRuby.cpp +49 -14
  59. data/ext/{fox12 → fox14}/MANIFEST +0 -0
  60. data/ext/{fox12 → fox14}/core_wrap.cpp +1098 -390
  61. data/ext/{fox12 → fox14}/dc_wrap.cpp +61 -1
  62. data/ext/{fox12 → fox14}/dialogs_wrap.cpp +2293 -939
  63. data/ext/{fox12 → fox14}/extconf.rb +8 -8
  64. data/ext/{fox12 → fox14}/frames_wrap.cpp +1396 -395
  65. data/ext/{fox12 → fox14}/fx3d_wrap.cpp +884 -363
  66. data/ext/{fox12 → fox14}/iconlist_wrap.cpp +338 -117
  67. data/ext/{fox12 → fox14}/icons_wrap.cpp +668 -61
  68. data/ext/{fox12 → fox14}/image_wrap.cpp +245 -164
  69. data/ext/{fox12 → fox14}/impl.cpp +58 -2
  70. data/ext/{fox12 → fox14}/include/FXMemoryBuffer.h +1 -1
  71. data/ext/{fox12 → fox14}/include/FXRb4Splitter.h +1 -1
  72. data/ext/fox14/include/FXRb7Segment.h +51 -0
  73. data/ext/{fox12 → fox14}/include/FXRbAccelTable.h +1 -1
  74. data/ext/{fox12 → fox14}/include/FXRbApp.h +1 -2
  75. data/ext/{fox12 → fox14}/include/FXRbAppVirtuals.h +0 -0
  76. data/ext/{fox12 → fox14}/include/FXRbArrowButton.h +1 -1
  77. data/ext/{fox12 → fox14}/include/FXRbBMPIcon.h +1 -1
  78. data/ext/{fox12 → fox14}/include/FXRbBMPImage.h +1 -1
  79. data/ext/{fox12 → fox14}/include/FXRbBitmap.h +5 -5
  80. data/ext/{fox12 → fox14}/include/FXRbBitmapFrame.h +1 -1
  81. data/ext/{fox12 → fox14}/include/FXRbBitmapView.h +1 -1
  82. data/ext/{fox12 → fox14}/include/FXRbBitmapVirtuals.h +1 -1
  83. data/ext/{fox12 → fox14}/include/FXRbButton.h +1 -1
  84. data/ext/{fox12 → fox14}/include/FXRbCURCursor.h +1 -1
  85. data/ext/{fox12 → fox14}/include/FXRbCanvas.h +1 -1
  86. data/ext/{fox12 → fox14}/include/FXRbCheckButton.h +1 -1
  87. data/ext/fox14/include/FXRbChoiceBox.h +56 -0
  88. data/ext/{fox12 → fox14}/include/FXRbColorBar.h +1 -1
  89. data/ext/{fox12 → fox14}/include/FXRbColorDialog.h +1 -1
  90. data/ext/{fox12 → fox14}/include/FXRbColorSelector.h +1 -1
  91. data/ext/{fox12 → fox14}/include/FXRbColorWell.h +1 -1
  92. data/ext/{fox12 → fox14}/include/FXRbColorWheel.h +1 -1
  93. data/ext/{fox12 → fox14}/include/FXRbComboBox.h +1 -1
  94. data/ext/{fox12 → fox14}/include/FXRbCommon.h +1 -1
  95. data/ext/{fox12 → fox14}/include/FXRbComposite.h +1 -1
  96. data/ext/{fox12 → fox14}/include/FXRbCursor.h +1 -1
  97. data/ext/{fox12 → fox14}/include/FXRbCursorVirtuals.h +0 -0
  98. data/ext/{fox12 → fox14}/include/FXRbDC.h +25 -1
  99. data/ext/{fox12 → fox14}/include/FXRbDCPrint.h +1 -1
  100. data/ext/{fox12 → fox14}/include/FXRbDCVirtuals.h +12 -0
  101. data/ext/{fox12 → fox14}/include/FXRbDCWindow.h +1 -1
  102. data/ext/{fox12 → fox14}/include/FXRbDataTarget.h +1 -1
  103. data/ext/{fox12 → fox14}/include/FXRbDebugTarget.h +1 -1
  104. data/ext/{fox12 → fox14}/include/FXRbDelegator.h +1 -1
  105. data/ext/{fox12 → fox14}/include/FXRbDial.h +1 -1
  106. data/ext/{fox12 → fox14}/include/FXRbDialogBox.h +1 -1
  107. data/ext/{fox12 → fox14}/include/FXRbDialogBoxVirtuals.h +0 -0
  108. data/ext/{fox12 → fox14}/include/FXRbDict.h +1 -1
  109. data/ext/{fox12 → fox14}/include/FXRbDirBox.h +2 -1
  110. data/ext/{fox12 → fox14}/include/FXRbDirDialog.h +4 -1
  111. data/ext/{fox12 → fox14}/include/FXRbDirList.h +1 -1
  112. data/ext/{fox12 → fox14}/include/FXRbDirSelector.h +1 -1
  113. data/ext/fox14/include/FXRbDockBar.h +86 -0
  114. data/ext/fox14/include/FXRbDockBarVirtuals.h +10 -0
  115. data/ext/fox14/include/FXRbDockHandler.h +51 -0
  116. data/ext/fox14/include/FXRbDockSite.h +85 -0
  117. data/ext/fox14/include/FXRbDockSiteVirtuals.h +13 -0
  118. data/ext/fox14/include/FXRbDockTitle.h +51 -0
  119. data/ext/{fox12 → fox14}/include/FXRbDocument.h +1 -1
  120. data/ext/{fox12 → fox14}/include/FXRbDragCorner.h +1 -1
  121. data/ext/{fox12 → fox14}/include/FXRbDrawable.h +1 -1
  122. data/ext/{fox12 → fox14}/include/FXRbDrawableVirtuals.h +0 -0
  123. data/ext/{fox12 → fox14}/include/FXRbDriveBox.h +2 -1
  124. data/ext/{fox12 → fox14}/include/FXRbFileDialog.h +1 -1
  125. data/ext/{fox12 → fox14}/include/FXRbFileDict.h +1 -1
  126. data/ext/{fox12 → fox14}/include/FXRbFileDictVirtuals.h +0 -0
  127. data/ext/{fox12 → fox14}/include/FXRbFileList.h +1 -1
  128. data/ext/{fox12 → fox14}/include/FXRbFileSelector.h +1 -1
  129. data/ext/{fox12 → fox14}/include/FXRbFoldingItemVirtuals.h +2 -5
  130. data/ext/{fox12 → fox14}/include/FXRbFoldingList.h +98 -15
  131. data/ext/fox14/include/FXRbFoldingListVirtuals.h +43 -0
  132. data/ext/{fox12 → fox14}/include/FXRbFont.h +1 -1
  133. data/ext/{fox12 → fox14}/include/FXRbFontDialog.h +1 -1
  134. data/ext/{fox12 → fox14}/include/FXRbFontSelector.h +1 -1
  135. data/ext/{fox12 → fox14}/include/FXRbFrame.h +1 -1
  136. data/ext/{fox12 → fox14}/include/FXRbGIFCursor.h +1 -1
  137. data/ext/{fox12 → fox14}/include/FXRbGIFIcon.h +1 -1
  138. data/ext/{fox12 → fox14}/include/FXRbGIFImage.h +1 -1
  139. data/ext/{fox12 → fox14}/include/FXRbGLCanvas.h +1 -1
  140. data/ext/{fox12 → fox14}/include/FXRbGLCanvasVirtuals.h +0 -0
  141. data/ext/{fox12 → fox14}/include/FXRbGLContext.h +1 -1
  142. data/ext/{fox12 → fox14}/include/FXRbGLObject.h +1 -1
  143. data/ext/{fox12 → fox14}/include/FXRbGLObjectVirtuals.h +0 -0
  144. data/ext/{fox12 → fox14}/include/FXRbGLShape.h +1 -1
  145. data/ext/{fox12 → fox14}/include/FXRbGLShapeVirtuals.h +0 -0
  146. data/ext/{fox12 → fox14}/include/FXRbGLViewer.h +7 -1
  147. data/ext/{fox12 → fox14}/include/FXRbGLViewerVirtuals.h +4 -0
  148. data/ext/{fox12 → fox14}/include/FXRbGLVisual.h +1 -1
  149. data/ext/{fox12 → fox14}/include/FXRbGradientBar.h +1 -1
  150. data/ext/{fox12 → fox14}/include/FXRbGroupBox.h +1 -1
  151. data/ext/{fox12 → fox14}/include/FXRbHeader.h +1 -1
  152. data/ext/{fox12 → fox14}/include/FXRbHeaderItemVirtuals.h +0 -0
  153. data/ext/{fox12 → fox14}/include/FXRbHorizontalFrame.h +1 -1
  154. data/ext/{fox12 → fox14}/include/FXRbICOIcon.h +1 -1
  155. data/ext/{fox12 → fox14}/include/FXRbICOImage.h +1 -1
  156. data/ext/{fox12 → fox14}/include/FXRbIcon.h +1 -1
  157. data/ext/{fox12 → fox14}/include/FXRbIconItemVirtuals.h +2 -5
  158. data/ext/{fox12 → fox14}/include/FXRbIconList.h +33 -15
  159. data/ext/{fox12 → fox14}/include/FXRbIconListVirtuals.h +14 -0
  160. data/ext/fox14/include/FXRbIconSource.h +127 -0
  161. data/ext/fox14/include/FXRbIconSourceVirtuals.h +37 -0
  162. data/ext/{fox12 → fox14}/include/FXRbId.h +1 -1
  163. data/ext/{fox12 → fox14}/include/FXRbIdVirtuals.h +0 -0
  164. data/ext/{fox12 → fox14}/include/FXRbImage.h +5 -5
  165. data/ext/{fox12 → fox14}/include/FXRbImageFrame.h +1 -1
  166. data/ext/{fox12 → fox14}/include/FXRbImageView.h +1 -1
  167. data/ext/{fox12 → fox14}/include/FXRbImageVirtuals.h +1 -1
  168. data/ext/{fox12 → fox14}/include/FXRbInputDialog.h +4 -1
  169. data/ext/{fox12 → fox14}/include/FXRbJPGIcon.h +1 -1
  170. data/ext/{fox12 → fox14}/include/FXRbJPGImage.h +1 -1
  171. data/ext/{fox12 → fox14}/include/FXRbLabel.h +1 -1
  172. data/ext/{fox12 → fox14}/include/FXRbList.h +29 -11
  173. data/ext/{fox12 → fox14}/include/FXRbListBox.h +12 -1
  174. data/ext/fox14/include/FXRbListBoxVirtuals.h +4 -0
  175. data/ext/{fox12 → fox14}/include/FXRbListItemVirtuals.h +1 -4
  176. data/ext/{fox12 → fox14}/include/FXRbListVirtuals.h +12 -0
  177. data/ext/{fox12 → fox14}/include/FXRbMDIButton.h +1 -1
  178. data/ext/{fox12 → fox14}/include/FXRbMDIChild.h +1 -1
  179. data/ext/{fox12 → fox14}/include/FXRbMDIChildVirtuals.h +0 -0
  180. data/ext/{fox12 → fox14}/include/FXRbMDIClient.h +1 -1
  181. data/ext/{fox12 → fox14}/include/FXRbMDIClientVirtuals.h +0 -0
  182. data/ext/{fox12 → fox14}/include/FXRbMainWindow.h +1 -1
  183. data/ext/{fox12 → fox14}/include/FXRbMatrix.h +1 -1
  184. data/ext/{fox12 → fox14}/include/FXRbMenuBar.h +2 -2
  185. data/ext/{fox12 → fox14}/include/FXRbMenuButton.h +1 -1
  186. data/ext/{fox12 → fox14}/include/FXRbMenuCaption.h +1 -1
  187. data/ext/{fox12 → fox14}/include/FXRbMenuCascade.h +1 -1
  188. data/ext/{fox12 → fox14}/include/FXRbMenuCheck.h +1 -1
  189. data/ext/{fox12 → fox14}/include/FXRbMenuCommand.h +1 -1
  190. data/ext/{fox12 → fox14}/include/FXRbMenuPane.h +1 -1
  191. data/ext/{fox12 → fox14}/include/FXRbMenuRadio.h +1 -1
  192. data/ext/{fox12 → fox14}/include/FXRbMenuSeparator.h +1 -1
  193. data/ext/{fox12 → fox14}/include/FXRbMenuTitle.h +1 -1
  194. data/ext/{fox12 → fox14}/include/FXRbMessageBox.h +1 -1
  195. data/ext/{fox12 → fox14}/include/FXRbObject.h +1 -1
  196. data/ext/{fox12 → fox14}/include/FXRbObjectVirtuals.h +0 -0
  197. data/ext/{fox12 → fox14}/include/FXRbOptionMenu.h +1 -1
  198. data/ext/{fox12 → fox14}/include/FXRbPCXIcon.h +1 -1
  199. data/ext/{fox12 → fox14}/include/FXRbPCXImage.h +1 -1
  200. data/ext/{fox12 → fox14}/include/FXRbPNGIcon.h +1 -1
  201. data/ext/{fox12 → fox14}/include/FXRbPNGImage.h +1 -1
  202. data/ext/{fox12 → fox14}/include/FXRbPPMIcon.h +1 -1
  203. data/ext/{fox12 → fox14}/include/FXRbPPMImage.h +1 -1
  204. data/ext/{fox12 → fox14}/include/FXRbPacker.h +1 -1
  205. data/ext/{fox12 → fox14}/include/FXRbPicker.h +1 -1
  206. data/ext/{fox12 → fox14}/include/FXRbPopup.h +1 -1
  207. data/ext/{fox12 → fox14}/include/FXRbPopupVirtuals.h +0 -0
  208. data/ext/{fox12 → fox14}/include/FXRbPrintDialog.h +1 -1
  209. data/ext/{fox12 → fox14}/include/FXRbProgressBar.h +1 -1
  210. data/ext/{fox12 → fox14}/include/FXRbProgressDialog.h +1 -1
  211. data/ext/{fox12 → fox14}/include/FXRbRGBIcon.h +1 -1
  212. data/ext/{fox12 → fox14}/include/FXRbRGBImage.h +1 -1
  213. data/ext/{fox12 → fox14}/include/FXRbRadioButton.h +1 -1
  214. data/ext/{fox12 → fox14}/include/FXRbRealSlider.h +1 -1
  215. data/ext/{fox12 → fox14}/include/FXRbRealSpinner.h +1 -1
  216. data/ext/{fox12 → fox14}/include/FXRbRealSpinnerVirtuals.h +0 -0
  217. data/ext/{fox12 → fox14}/include/FXRbRecentFiles.h +1 -1
  218. data/ext/{fox12 → fox14}/include/FXRbRegistry.h +1 -1
  219. data/ext/{fox12 → fox14}/include/FXRbReplaceDialog.h +1 -1
  220. data/ext/{fox12 → fox14}/include/FXRbRootWindow.h +1 -1
  221. data/ext/{fox12 → fox14}/include/FXRbRuler.h +1 -1
  222. data/ext/{fox12 → fox14}/include/FXRbScintilla.h +1 -1
  223. data/ext/{fox12 → fox14}/include/FXRbScrollArea.h +1 -1
  224. data/ext/{fox12 → fox14}/include/FXRbScrollAreaVirtuals.h +0 -0
  225. data/ext/{fox12 → fox14}/include/FXRbScrollBar.h +1 -1
  226. data/ext/{fox12 → fox14}/include/FXRbScrollPane.h +1 -1
  227. data/ext/{fox12 → fox14}/include/FXRbScrollWindow.h +1 -1
  228. data/ext/{fox12 → fox14}/include/FXRbSearchDialog.h +1 -1
  229. data/ext/{fox12 → fox14}/include/FXRbSeparator.h +1 -1
  230. data/ext/{fox12 → fox14}/include/FXRbSettings.h +1 -1
  231. data/ext/{fox12 → fox14}/include/FXRbShell.h +1 -1
  232. data/ext/{fox12 → fox14}/include/FXRbShutter.h +1 -1
  233. data/ext/{fox12 → fox14}/include/FXRbShutterVirtuals.h +0 -0
  234. data/ext/{fox12 → fox14}/include/FXRbSlider.h +1 -1
  235. data/ext/{fox12 → fox14}/include/FXRbSpinner.h +1 -1
  236. data/ext/{fox12 → fox14}/include/FXRbSpinnerVirtuals.h +0 -0
  237. data/ext/fox14/include/FXRbSplashWindow.h +57 -0
  238. data/ext/{fox12 → fox14}/include/FXRbSplitter.h +1 -1
  239. data/ext/{fox12 → fox14}/include/FXRbSpring.h +1 -1
  240. data/ext/{fox12 → fox14}/include/FXRbStatusBar.h +1 -1
  241. data/ext/{fox12 → fox14}/include/FXRbStatusLine.h +1 -1
  242. data/ext/{fox12 → fox14}/include/FXRbStream.h +3 -3
  243. data/ext/{fox12 → fox14}/include/FXRbStreamVirtuals.h +1 -1
  244. data/ext/{fox12 → fox14}/include/FXRbStringDict.h +1 -1
  245. data/ext/{fox12 → fox14}/include/FXRbSwitcher.h +1 -1
  246. data/ext/{fox12 → fox14}/include/FXRbTGAIcon.h +1 -1
  247. data/ext/{fox12 → fox14}/include/FXRbTGAImage.h +1 -1
  248. data/ext/{fox12 → fox14}/include/FXRbTIFIcon.h +1 -1
  249. data/ext/{fox12 → fox14}/include/FXRbTIFImage.h +1 -1
  250. data/ext/{fox12 → fox14}/include/FXRbTabBar.h +1 -1
  251. data/ext/{fox12 → fox14}/include/FXRbTabBarVirtuals.h +0 -0
  252. data/ext/{fox12 → fox14}/include/FXRbTabBook.h +1 -1
  253. data/ext/{fox12 → fox14}/include/FXRbTabItem.h +1 -1
  254. data/ext/{fox12 → fox14}/include/FXRbTable.h +96 -36
  255. data/ext/{fox12 → fox14}/include/FXRbTableItemVirtuals.h +24 -3
  256. data/ext/{fox12 → fox14}/include/FXRbTableVirtuals.h +19 -6
  257. data/ext/{fox12 → fox14}/include/FXRbText.h +2 -2
  258. data/ext/{fox12 → fox14}/include/FXRbTextField.h +1 -1
  259. data/ext/{fox12 → fox14}/include/FXRbTextVirtuals.h +0 -0
  260. data/ext/{fox12 → fox14}/include/FXRbToggleButton.h +1 -1
  261. data/ext/{fox12 → fox14}/include/FXRbToolBar.h +2 -19
  262. data/ext/{fox12 → fox14}/include/FXRbToolBarGrip.h +1 -1
  263. data/ext/{fox12 → fox14}/include/FXRbToolBarShell.h +1 -1
  264. data/ext/{fox12 → fox14}/include/FXRbToolBarTab.h +1 -1
  265. data/ext/{fox12 → fox14}/include/FXRbToolTip.h +1 -1
  266. data/ext/{fox12 → fox14}/include/FXRbTopWindow.h +1 -1
  267. data/ext/{fox12 → fox14}/include/FXRbTopWindowVirtuals.h +0 -0
  268. data/ext/{fox12 → fox14}/include/FXRbTreeItemVirtuals.h +2 -2
  269. data/ext/{fox12 → fox14}/include/FXRbTreeList.h +33 -9
  270. data/ext/{fox12 → fox14}/include/FXRbTreeListBox.h +12 -1
  271. data/ext/fox14/include/FXRbTreeListBoxVirtuals.h +4 -0
  272. data/ext/{fox12 → fox14}/include/FXRbTreeListVirtuals.h +12 -0
  273. data/ext/{fox12 → fox14}/include/FXRbTriStateButton.h +1 -1
  274. data/ext/{fox12 → fox14}/include/FXRbVerticalFrame.h +1 -1
  275. data/ext/{fox12 → fox14}/include/FXRbVisual.h +1 -1
  276. data/ext/{fox12 → fox14}/include/FXRbWindow.h +35 -5
  277. data/ext/{fox12 → fox14}/include/FXRbWindowVirtuals.h +17 -1
  278. data/ext/{fox12 → fox14}/include/FXRbWizard.h +1 -1
  279. data/ext/{fox12 → fox14}/include/FXRbXBMIcon.h +1 -1
  280. data/ext/{fox12 → fox14}/include/FXRbXBMImage.h +1 -1
  281. data/ext/{fox12 → fox14}/include/FXRbXPMIcon.h +1 -1
  282. data/ext/{fox12 → fox14}/include/FXRbXPMImage.h +1 -1
  283. data/ext/{fox12 → fox14}/include/FXRuby.h +78 -7
  284. data/ext/{fox12 → fox14}/include/impl.h +7 -0
  285. data/ext/{fox12 → fox14}/include/inlinestubs.h +58 -2
  286. data/ext/{fox12 → fox14}/label_wrap.cpp +524 -68
  287. data/ext/{fox12 → fox14}/layout_wrap.cpp +1025 -90
  288. data/ext/{fox12 → fox14}/librb.c +0 -0
  289. data/ext/{fox12 → fox14}/list_wrap.cpp +328 -234
  290. data/ext/{fox12 → fox14}/markfuncs.cpp +29 -4
  291. data/ext/{fox12 → fox14}/mdi_wrap.cpp +553 -99
  292. data/ext/{fox12 → fox14}/menu_wrap.cpp +967 -404
  293. data/ext/{fox12 → fox14}/scintilla_wrap.cpp +754 -635
  294. data/ext/{fox12 → fox14}/table_wrap.cpp +501 -284
  295. data/ext/{fox12 → fox14}/text_wrap.cpp +765 -629
  296. data/ext/{fox12 → fox14}/treelist_wrap.cpp +859 -661
  297. data/ext/{fox12 → fox14}/ui_wrap.cpp +3025 -627
  298. data/ext/{fox12 → fox14}/unregisterOwnedObjects.cpp +1 -1
  299. data/lib/{fox12 → fox14}/aliases.rb +252 -45
  300. data/lib/{fox12 → fox14}/calendar.rb +2 -2
  301. data/lib/{fox12 → fox14}/chore.rb +1 -1
  302. data/lib/{fox12 → fox14}/colors.rb +1 -1
  303. data/lib/{fox12 → fox14}/core.rb +126 -52
  304. data/lib/{fox12 → fox14}/dict.rb +0 -0
  305. data/lib/{fox12 → fox14}/execute_nonmodal.rb +0 -0
  306. data/lib/{fox12 → fox14}/glgroup.rb +1 -1
  307. data/lib/{fox12 → fox14}/glshapes.rb +1 -1
  308. data/lib/{fox12 → fox14}/input.rb +1 -1
  309. data/lib/{fox12 → fox14}/irb.rb +1 -1
  310. data/lib/{fox12 → fox14}/iterators.rb +1 -1
  311. data/lib/{fox12 → fox14}/keys.rb +1 -1
  312. data/lib/{fox12 → fox14}/missingdep.rb +1 -1
  313. data/lib/{fox12 → fox14}/pseudokeyboard.rb +1 -1
  314. data/lib/{fox12 → fox14}/pseudomouse.rb +1 -1
  315. data/lib/{fox12 → fox14}/responder.rb +1 -1
  316. data/lib/{fox12 → fox14}/responder2.rb +5 -5
  317. data/lib/{fox12 → fox14}/scintilla.rb +0 -0
  318. data/lib/{fox12 → fox14}/settings.rb +0 -0
  319. data/lib/{fox12 → fox14}/signal.rb +1 -1
  320. data/lib/{fox12 → fox14}/splashscreen.rb +2 -2
  321. data/lib/{fox12 → fox14}/timeout.rb +1 -1
  322. data/lib/{fox12 → fox14}/undolist.rb +2 -2
  323. data/lib/{fox12 → fox14}/version.rb +2 -2
  324. data/rdoc-sources/FX7Segment.rb +48 -0
  325. data/rdoc-sources/FXApp.rb +51 -31
  326. data/rdoc-sources/FXBMPIcon.rb +18 -1
  327. data/rdoc-sources/FXBMPImage.rb +5 -0
  328. data/rdoc-sources/FXBitmap.rb +18 -3
  329. data/rdoc-sources/FXBitmapFrame.rb +3 -1
  330. data/rdoc-sources/FXBitmapView.rb +4 -1
  331. data/rdoc-sources/FXButton.rb +16 -0
  332. data/rdoc-sources/FXCheckButton.rb +25 -1
  333. data/rdoc-sources/FXChoiceBox.rb +82 -0
  334. data/rdoc-sources/FXColorBar.rb +6 -1
  335. data/rdoc-sources/FXColorDialog.rb +1 -0
  336. data/rdoc-sources/FXColorWell.rb +14 -6
  337. data/rdoc-sources/FXColorWheel.rb +6 -4
  338. data/rdoc-sources/FXComboBox.rb +53 -5
  339. data/rdoc-sources/FXCursor.rb +2 -2
  340. data/rdoc-sources/FXDC.rb +36 -2
  341. data/rdoc-sources/FXDial.rb +10 -4
  342. data/rdoc-sources/FXDirBox.rb +7 -1
  343. data/rdoc-sources/FXDirDialog.rb +33 -0
  344. data/rdoc-sources/FXDirList.rb +8 -3
  345. data/rdoc-sources/FXDirSelector.rb +36 -2
  346. data/rdoc-sources/FXDockBar.rb +136 -0
  347. data/rdoc-sources/FXDockHandler.rb +19 -0
  348. data/rdoc-sources/FXDockSite.rb +86 -0
  349. data/rdoc-sources/FXDockTitle.rb +26 -0
  350. data/rdoc-sources/FXFileDialog.rb +33 -0
  351. data/rdoc-sources/FXFileDict.rb +29 -56
  352. data/rdoc-sources/FXFileList.rb +39 -16
  353. data/rdoc-sources/FXFileSelector.rb +28 -2
  354. data/rdoc-sources/FXFileStream.rb +3 -0
  355. data/rdoc-sources/FXFoldingList.rb +104 -62
  356. data/rdoc-sources/FXFont.rb +2 -9
  357. data/rdoc-sources/FXFrame.rb +7 -1
  358. data/rdoc-sources/FXGIFCursor.rb +17 -5
  359. data/rdoc-sources/FXGIFIcon.rb +5 -0
  360. data/rdoc-sources/FXGIFImage.rb +5 -0
  361. data/rdoc-sources/FXHeader.rb +24 -4
  362. data/rdoc-sources/FXICOIcon.rb +10 -0
  363. data/rdoc-sources/FXICOImage.rb +5 -0
  364. data/rdoc-sources/FXIconList.rb +37 -13
  365. data/rdoc-sources/FXIconSource.rb +100 -0
  366. data/rdoc-sources/FXImage.rb +8 -2
  367. data/rdoc-sources/FXInputDialog.rb +6 -0
  368. data/rdoc-sources/FXJPGIcon.rb +13 -0
  369. data/rdoc-sources/FXJPGImage.rb +8 -0
  370. data/rdoc-sources/FXLabel.rb +4 -1
  371. data/rdoc-sources/FXList.rb +19 -9
  372. data/rdoc-sources/FXListBox.rb +22 -4
  373. data/rdoc-sources/FXMDIChild.rb +21 -2
  374. data/rdoc-sources/FXMDIClient.rb +15 -11
  375. data/rdoc-sources/FXMainWindow.rb +7 -1
  376. data/rdoc-sources/FXMemoryStream.rb +2 -0
  377. data/rdoc-sources/FXMenuBar.rb +1 -1
  378. data/rdoc-sources/FXMessageBox.rb +17 -7
  379. data/rdoc-sources/FXObject.rb +7 -1
  380. data/rdoc-sources/FXPCXIcon.rb +10 -0
  381. data/rdoc-sources/FXPCXImage.rb +5 -0
  382. data/rdoc-sources/FXPNGIcon.rb +15 -2
  383. data/rdoc-sources/FXPNGImage.rb +8 -0
  384. data/rdoc-sources/FXPPMIcon.rb +10 -0
  385. data/rdoc-sources/FXPPMImage.rb +5 -0
  386. data/rdoc-sources/FXQuatd.rb +1 -1
  387. data/rdoc-sources/FXQuatf.rb +1 -1
  388. data/rdoc-sources/FXRGBIcon.rb +12 -2
  389. data/rdoc-sources/FXRGBImage.rb +5 -0
  390. data/rdoc-sources/FXRegistry.rb +19 -2
  391. data/rdoc-sources/FXRuler.rb +47 -5
  392. data/rdoc-sources/FXScrollArea.rb +4 -4
  393. data/rdoc-sources/FXScrollPane.rb +3 -1
  394. data/rdoc-sources/FXSeparator.rb +20 -10
  395. data/rdoc-sources/FXSettings.rb +3 -3
  396. data/rdoc-sources/FXShell.rb +2 -1
  397. data/rdoc-sources/FXShutter.rb +7 -2
  398. data/rdoc-sources/FXSphered.rb +5 -2
  399. data/rdoc-sources/FXSpheref.rb +5 -2
  400. data/rdoc-sources/FXSplashWindow.rb +31 -0
  401. data/rdoc-sources/FXSplitter.rb +2 -1
  402. data/rdoc-sources/FXStream.rb +11 -2
  403. data/rdoc-sources/FXTGAIcon.rb +12 -2
  404. data/rdoc-sources/FXTGAImage.rb +5 -0
  405. data/rdoc-sources/FXTIFIcon.rb +15 -2
  406. data/rdoc-sources/FXTIFImage.rb +8 -0
  407. data/rdoc-sources/FXTable.rb +92 -15
  408. data/rdoc-sources/FXText.rb +11 -2
  409. data/rdoc-sources/FXTextField.rb +6 -2
  410. data/rdoc-sources/FXToolBar.rb +5 -65
  411. data/rdoc-sources/FXToolBarGrip.rb +5 -10
  412. data/rdoc-sources/FXToolBarTab.rb +8 -3
  413. data/rdoc-sources/FXTopWindow.rb +4 -0
  414. data/rdoc-sources/FXTreeList.rb +56 -50
  415. data/rdoc-sources/FXTreeListBox.rb +49 -30
  416. data/rdoc-sources/FXWindow.rb +30 -11
  417. data/rdoc-sources/FXXBMIcon.rb +10 -0
  418. data/rdoc-sources/FXXBMImage.rb +5 -0
  419. data/rdoc-sources/FXXPMIcon.rb +11 -1
  420. data/rdoc-sources/FXXPMImage.rb +5 -0
  421. data/rdoc-sources/README.rdoc +1 -1
  422. data/tests/TC_FXBMPIcon.rb +15 -0
  423. data/tests/TC_FXBMPImage.rb +15 -0
  424. data/tests/TC_FXFont.rb +0 -10
  425. data/tests/TC_FXXBMIcon.rb +15 -0
  426. data/tests/TC_FXXBMImage.rb +15 -0
  427. data/tests/TC_FXXPMIcon.rb +15 -0
  428. data/tests/TC_FXXPMImage.rb +15 -0
  429. data/web/downloads.html +3 -1
  430. data/web/home.html +3 -1
  431. metadata +290 -268
  432. data/ANNOUNCE +0 -25
  433. data/examples/mditest2.rb +0 -195
  434. data/ext/fox12/include/FXRbToolBarVirtuals.h +0 -6
  435. data/lib/fox12/dialogs.rb +0 -72
  436. data/tests/TC_FXSettings.rb +0 -34
  437. data/tests/doit.rb +0 -5
@@ -7,6 +7,12 @@ IMPLEMENT_FXID_STUBS(FXRb4Splitter)
7
7
  IMPLEMENT_FXDRAWABLE_STUBS(FXRb4Splitter)
8
8
  IMPLEMENT_FXWINDOW_STUBS(FXRb4Splitter)
9
9
 
10
+ /* Start stub implementations for class FXRb7Segment */
11
+ IMPLEMENT_FXOBJECT_STUBS(FXRb7Segment)
12
+ IMPLEMENT_FXID_STUBS(FXRb7Segment)
13
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRb7Segment)
14
+ IMPLEMENT_FXWINDOW_STUBS(FXRb7Segment)
15
+
10
16
  /* Start stub implementations for class FXRbAccelTable */
11
17
  IMPLEMENT_FXOBJECT_STUBS(FXRbAccelTable)
12
18
 
@@ -67,6 +73,14 @@ IMPLEMENT_FXID_STUBS(FXRbCheckButton)
67
73
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbCheckButton)
68
74
  IMPLEMENT_FXWINDOW_STUBS(FXRbCheckButton)
69
75
 
76
+ /* Start stub implementations for class FXRbChoiceBox */
77
+ IMPLEMENT_FXOBJECT_STUBS(FXRbChoiceBox)
78
+ IMPLEMENT_FXID_STUBS(FXRbChoiceBox)
79
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRbChoiceBox)
80
+ IMPLEMENT_FXWINDOW_STUBS(FXRbChoiceBox)
81
+ IMPLEMENT_FXTOPWINDOW_STUBS(FXRbChoiceBox)
82
+ IMPLEMENT_FXDIALOGBOX_STUBS(FXRbChoiceBox)
83
+
70
84
  /* Start stub implementations for class FXRbColorBar */
71
85
  IMPLEMENT_FXOBJECT_STUBS(FXRbColorBar)
72
86
  IMPLEMENT_FXID_STUBS(FXRbColorBar)
@@ -156,6 +170,7 @@ IMPLEMENT_FXOBJECT_STUBS(FXRbDirBox)
156
170
  IMPLEMENT_FXID_STUBS(FXRbDirBox)
157
171
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbDirBox)
158
172
  IMPLEMENT_FXWINDOW_STUBS(FXRbDirBox)
173
+ IMPLEMENT_FXTREELISTBOX_STUBS(FXRbDirBox)
159
174
 
160
175
  /* Start stub implementations for class FXRbDirDialog */
161
176
  IMPLEMENT_FXOBJECT_STUBS(FXRbDirDialog)
@@ -183,6 +198,32 @@ IMPLEMENT_FXID_STUBS(FXRbDirSelector)
183
198
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbDirSelector)
184
199
  IMPLEMENT_FXWINDOW_STUBS(FXRbDirSelector)
185
200
 
201
+ /* Start stub implementations for class FXRbDockBar */
202
+ IMPLEMENT_FXOBJECT_STUBS(FXRbDockBar)
203
+ IMPLEMENT_FXID_STUBS(FXRbDockBar)
204
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRbDockBar)
205
+ IMPLEMENT_FXWINDOW_STUBS(FXRbDockBar)
206
+ IMPLEMENT_FXDOCKBAR_STUBS(FXRbDockBar)
207
+
208
+ /* Start stub implementations for class FXRbDockHandler */
209
+ IMPLEMENT_FXOBJECT_STUBS(FXRbDockHandler)
210
+ IMPLEMENT_FXID_STUBS(FXRbDockHandler)
211
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRbDockHandler)
212
+ IMPLEMENT_FXWINDOW_STUBS(FXRbDockHandler)
213
+
214
+ /* Start stub implementations for class FXRbDockSite */
215
+ IMPLEMENT_FXOBJECT_STUBS(FXRbDockSite)
216
+ IMPLEMENT_FXID_STUBS(FXRbDockSite)
217
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRbDockSite)
218
+ IMPLEMENT_FXWINDOW_STUBS(FXRbDockSite)
219
+ IMPLEMENT_FXDOCKSITE_STUBS(FXRbDockSite)
220
+
221
+ /* Start stub implementations for class FXRbDockTitle */
222
+ IMPLEMENT_FXOBJECT_STUBS(FXRbDockTitle)
223
+ IMPLEMENT_FXID_STUBS(FXRbDockTitle)
224
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRbDockTitle)
225
+ IMPLEMENT_FXWINDOW_STUBS(FXRbDockTitle)
226
+
186
227
  /* Start stub implementations for class FXRbDocument */
187
228
  IMPLEMENT_FXOBJECT_STUBS(FXRbDocument)
188
229
 
@@ -202,6 +243,7 @@ IMPLEMENT_FXOBJECT_STUBS(FXRbDriveBox)
202
243
  IMPLEMENT_FXID_STUBS(FXRbDriveBox)
203
244
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbDriveBox)
204
245
  IMPLEMENT_FXWINDOW_STUBS(FXRbDriveBox)
246
+ IMPLEMENT_FXLISTBOX_STUBS(FXRbDriveBox)
205
247
 
206
248
  /* Start stub implementations for class FXRbFileDialog */
207
249
  IMPLEMENT_FXOBJECT_STUBS(FXRbFileDialog)
@@ -246,6 +288,7 @@ IMPLEMENT_FXID_STUBS(FXRbFoldingList)
246
288
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbFoldingList)
247
289
  IMPLEMENT_FXWINDOW_STUBS(FXRbFoldingList)
248
290
  IMPLEMENT_FXSCROLLAREA_STUBS(FXRbFoldingList)
291
+ IMPLEMENT_FXFOLDINGLIST_STUBS(FXRbFoldingList)
249
292
 
250
293
  /* Start stub implementations for class FXRbFont */
251
294
  IMPLEMENT_FXOBJECT_STUBS(FXRbFont)
@@ -378,6 +421,10 @@ IMPLEMENT_FXWINDOW_STUBS(FXRbIconList)
378
421
  IMPLEMENT_FXSCROLLAREA_STUBS(FXRbIconList)
379
422
  IMPLEMENT_FXICONLIST_STUBS(FXRbIconList)
380
423
 
424
+ /* Start stub implementations for class FXRbIconSource */
425
+ IMPLEMENT_FXOBJECT_STUBS(FXRbIconSource)
426
+ IMPLEMENT_FXICONSOURCE_STUBS(FXRbIconSource)
427
+
381
428
  /* Start stub implementations for class FXRbId */
382
429
  IMPLEMENT_FXOBJECT_STUBS(FXRbId)
383
430
  IMPLEMENT_FXID_STUBS(FXRbId)
@@ -444,6 +491,7 @@ IMPLEMENT_FXOBJECT_STUBS(FXRbListBox)
444
491
  IMPLEMENT_FXID_STUBS(FXRbListBox)
445
492
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbListBox)
446
493
  IMPLEMENT_FXWINDOW_STUBS(FXRbListBox)
494
+ IMPLEMENT_FXLISTBOX_STUBS(FXRbListBox)
447
495
 
448
496
  /* Start stub implementations for class FXRbMDIDeleteButton */
449
497
  IMPLEMENT_FXOBJECT_STUBS(FXRbMDIDeleteButton)
@@ -514,7 +562,7 @@ IMPLEMENT_FXOBJECT_STUBS(FXRbMenuBar)
514
562
  IMPLEMENT_FXID_STUBS(FXRbMenuBar)
515
563
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbMenuBar)
516
564
  IMPLEMENT_FXWINDOW_STUBS(FXRbMenuBar)
517
- IMPLEMENT_FXTOOLBAR_STUBS(FXRbMenuBar)
565
+ IMPLEMENT_FXDOCKBAR_STUBS(FXRbMenuBar)
518
566
 
519
567
  /* Start stub implementations for class FXRbMenuButton */
520
568
  IMPLEMENT_FXOBJECT_STUBS(FXRbMenuButton)
@@ -833,6 +881,13 @@ IMPLEMENT_FXDRAWABLE_STUBS(FXRbSpinner)
833
881
  IMPLEMENT_FXWINDOW_STUBS(FXRbSpinner)
834
882
  IMPLEMENT_FXSPINNER_STUBS(FXRbSpinner)
835
883
 
884
+ /* Start stub implementations for class FXRbSplashWindow */
885
+ IMPLEMENT_FXOBJECT_STUBS(FXRbSplashWindow)
886
+ IMPLEMENT_FXID_STUBS(FXRbSplashWindow)
887
+ IMPLEMENT_FXDRAWABLE_STUBS(FXRbSplashWindow)
888
+ IMPLEMENT_FXWINDOW_STUBS(FXRbSplashWindow)
889
+ IMPLEMENT_FXTOPWINDOW_STUBS(FXRbSplashWindow)
890
+
836
891
  /* Start stub implementations for class FXRbSplitter */
837
892
  IMPLEMENT_FXOBJECT_STUBS(FXRbSplitter)
838
893
  IMPLEMENT_FXID_STUBS(FXRbSplitter)
@@ -956,7 +1011,7 @@ IMPLEMENT_FXOBJECT_STUBS(FXRbToolBar)
956
1011
  IMPLEMENT_FXID_STUBS(FXRbToolBar)
957
1012
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbToolBar)
958
1013
  IMPLEMENT_FXWINDOW_STUBS(FXRbToolBar)
959
- IMPLEMENT_FXTOOLBAR_STUBS(FXRbToolBar)
1014
+ IMPLEMENT_FXDOCKBAR_STUBS(FXRbToolBar)
960
1015
 
961
1016
  /* Start stub implementations for class FXRbToolBarGrip */
962
1017
  IMPLEMENT_FXOBJECT_STUBS(FXRbToolBarGrip)
@@ -1007,6 +1062,7 @@ IMPLEMENT_FXOBJECT_STUBS(FXRbTreeListBox)
1007
1062
  IMPLEMENT_FXID_STUBS(FXRbTreeListBox)
1008
1063
  IMPLEMENT_FXDRAWABLE_STUBS(FXRbTreeListBox)
1009
1064
  IMPLEMENT_FXWINDOW_STUBS(FXRbTreeListBox)
1065
+ IMPLEMENT_FXTREELISTBOX_STUBS(FXRbTreeListBox)
1010
1066
 
1011
1067
  /* Start stub implementations for class FXRbTriStateButton */
1012
1068
  IMPLEMENT_FXOBJECT_STUBS(FXRbTriStateButton)
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXMemoryBuffer.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXMemoryBuffer.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXMEMORYBUFFER_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRb4Splitter.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRb4Splitter.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRB4SPLITTER_H
@@ -0,0 +1,51 @@
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: FXRb7Segment.h,v 1.1 2005/08/18 12:21:36 lyle Exp $
25
+ ***********************************************************************/
26
+
27
+ #ifndef FXRB7SEGMENT_H
28
+ #define FXRB7SEGMENT_H
29
+
30
+ class FXRb7Segment : public FX7Segment {
31
+ FXDECLARE(FXRb7Segment)
32
+ protected:
33
+ FXRb7Segment(){}
34
+ #include "FXRbObjectVirtuals.h"
35
+ #include "FXRbIdVirtuals.h"
36
+ #include "FXRbDrawableVirtuals.h"
37
+ #include "FXRbWindowVirtuals.h"
38
+ public:
39
+ /// Construct label with given text and icon
40
+ FXRb7Segment(FXComposite* p,const FXString& text,FXuint opts=SEVENSEGMENT_NORMAL,FXint x=0,FXint y=0,FXint w=0,FXint h=0,FXint pl=DEFAULT_PAD,FXint pr=DEFAULT_PAD,FXint pt=DEFAULT_PAD,FXint pb=DEFAULT_PAD) : FX7Segment(p,text,opts,x,y,w,h,pl,pr,pt,pb){}
41
+
42
+ // Mark dependencies for the GC
43
+ static void markfunc(FX7Segment* label);
44
+
45
+ // Destructor
46
+ virtual ~FXRb7Segment(){
47
+ FXRbUnregisterRubyObj(this);
48
+ }
49
+ };
50
+
51
+ #endif
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbAccelTable.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbAccelTable.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBACCELTABLE_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbApp.h,v 1.2 2005/02/05 17:34:32 lyle Exp $
24
+ * $Id: FXRbApp.h,v 1.2 2005/08/16 03:27:22 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBAPP_H
@@ -112,7 +112,6 @@ class FXRbApp : public FXApp {
112
112
  protected:
113
113
  FXbool m_bThreadsEnabled;
114
114
  FXuint sleepTime;
115
- FXChore* threadsChore;
116
115
  protected:
117
116
  FXRbApp(){}
118
117
  public:
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbArrowButton.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbArrowButton.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBARROWBUTTON_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbBMPIcon.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbBMPIcon.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBBMPICON_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbBMPImage.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbBMPImage.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBBMPIMAGE_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbBitmap.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbBitmap.h,v 1.2 2005/08/16 03:27:22 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBBITMAP_H
@@ -49,8 +49,8 @@ inline void cls ## _mirror(cls* self,FXbool horizontal,FXbool vertical){ \
49
49
  inline void cls ## _rotate(cls* self,FXint degrees){ \
50
50
  self->cls::rotate(degrees); \
51
51
  } \
52
- inline void cls ## _crop(cls* self,FXint x,FXint y,FXint w,FXint h){ \
53
- self->cls::crop(x,y,w,h); \
52
+ inline void cls ## _crop(cls* self,FXint x,FXint y,FXint w,FXint h,FXbool color){ \
53
+ self->cls::crop(x,y,w,h,color); \
54
54
  } \
55
55
  inline void cls ## _fill(cls* self,FXbool color){ \
56
56
  self->cls::fill(color); \
@@ -79,8 +79,8 @@ inline void cls ## _fill(cls* self,FXbool color){ \
79
79
  void cls::rotate(FXint degrees){ \
80
80
  FXRbCallVoidMethod(this,rb_intern("rotate"),degrees); \
81
81
  } \
82
- void cls::crop(FXint x,FXint y,FXint w,FXint h){ \
83
- FXRbCallVoidMethod(this,rb_intern("crop"),x,y,w,h); \
82
+ void cls::crop(FXint x,FXint y,FXint w,FXint h,FXbool color){ \
83
+ FXRbCallVoidMethod(this,rb_intern("crop"),x,y,w,h,color); \
84
84
  } \
85
85
  void cls::fill(FXbool color){ \
86
86
  FXRbCallVoidMethod(this,rb_intern("fill"),color); \
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbBitmapFrame.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbBitmapFrame.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBBITMAPFRAME_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbBitmapView.h,v 1.2 2005/02/27 21:05:22 lyle Exp $
24
+ * $Id: FXRbBitmapView.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBBITMAPVIEW_H
@@ -21,7 +21,7 @@ public:
21
21
  virtual void rotate(FXint degrees);
22
22
 
23
23
  /// Crop bitmap to given rectangle
24
- virtual void crop(FXint x,FXint y,FXint w,FXint h);
24
+ virtual void crop(FXint x,FXint y,FXint w,FXint h,FXbool color=0);
25
25
 
26
26
  /// Fill bitmap with uniform value
27
27
  virtual void fill(FXbool color);
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbButton.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbButton.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBBUTTON_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbCURCursor.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbCURCursor.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBCURCURSOR_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbCanvas.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbCanvas.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBCANVAS_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbCheckButton.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbCheckButton.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBCHECKBUTTON_H
@@ -0,0 +1,56 @@
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@rubyforge.org".
21
+ ***********************************************************************/
22
+
23
+ /***********************************************************************
24
+ * $Id: FXRbChoiceBox.h,v 1.2 2005/08/16 03:27:22 lyle Exp $
25
+ ***********************************************************************/
26
+
27
+ #ifndef FXRBCHOICEBOX_H
28
+ #define FXRBCHOICEBOX_H
29
+
30
+ class FXRbChoiceBox : public FXChoiceBox {
31
+ FXDECLARE(FXRbChoiceBox)
32
+ protected:
33
+ FXRbChoiceBox(){}
34
+ #include "FXRbObjectVirtuals.h"
35
+ #include "FXRbIdVirtuals.h"
36
+ #include "FXRbDrawableVirtuals.h"
37
+ #include "FXRbWindowVirtuals.h"
38
+ #include "FXRbTopWindowVirtuals.h"
39
+ #include "FXRbDialogBoxVirtuals.h"
40
+ public:
41
+ /// Construct color dialog
42
+ FXRbChoiceBox(FXWindow* owner,const FXString& caption,const FXString& text,FXIcon* icon,const FXchar** choices,FXuint opts=0,FXint x=0,FXint y=0,FXint w=0,FXint h=0) : FXChoiceBox(owner,caption,text,icon,choices,opts,x,y,w,h){}
43
+
44
+ /// Construct color dialog
45
+ FXRbChoiceBox(FXApp* app,const FXString& caption,const FXString& text,FXIcon* icon,const FXchar** choices,FXuint opts=0,FXint x=0,FXint y=0,FXint w=0,FXint h=0) : FXChoiceBox(app,caption,text,icon,choices,opts,x,y,w,h){}
46
+
47
+ // Mark dependencies for the GC
48
+ static void markfunc(FXChoiceBox* dlg);
49
+
50
+ // Destructor
51
+ virtual ~FXRbChoiceBox(){
52
+ FXRbUnregisterRubyObj(this);
53
+ }
54
+ };
55
+
56
+ #endif
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbColorBar.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbColorBar.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBCOLORBAR_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbColorDialog.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbColorDialog.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBCOLORDIALOG_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbColorSelector.h,v 1.1 2004/08/07 10:55:26 lyle Exp $
24
+ * $Id: FXRbColorSelector.h,v 1.1 2005/08/14 15:12:43 lyle Exp $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBCOLORSELECTOR_H