fxruby 1.4.7 → 1.6.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 (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
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbVisual.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbVisual.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBVISUAL_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbWindow.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbWindow.h 2344 2006-02-12 21:19:36Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBWINDOW_H
@@ -43,7 +43,7 @@ inline FXint klass ## _getWidthForHeight(klass* self,FXint givenheight){ \
43
43
  inline FXint klass ## _getHeightForWidth(klass* self,FXint givenwidth){ \
44
44
  return self->klass::getHeightForWidth(givenwidth); \
45
45
  } \
46
- inline FXbool klass ## _canFocus(const klass* self){ \
46
+ inline bool klass ## _canFocus(const klass* self){ \
47
47
  return self->klass::canFocus(); \
48
48
  } \
49
49
  inline void klass ## _setFocus(klass* self){ \
@@ -88,18 +88,21 @@ inline void klass ## _show(klass* self){ \
88
88
  inline void klass ## _hide(klass* self){ \
89
89
  self->klass::hide(); \
90
90
  } \
91
- inline FXbool klass ## _isComposite(const klass* self) { \
91
+ inline bool klass ## _isComposite(const klass* self) { \
92
92
  return self->klass::isComposite(); \
93
93
  } \
94
- inline FXbool klass ## _contains(const klass* self,FXint parentx,FXint parenty) { \
94
+ inline bool klass ## _contains(const klass* self,FXint parentx,FXint parenty) { \
95
95
  return self->klass::contains(parentx,parenty); \
96
96
  } \
97
- inline FXbool klass ## _doesSaveUnder(const klass* self) { \
97
+ inline bool klass ## _doesSaveUnder(const klass* self) { \
98
98
  return self->klass::doesSaveUnder(); \
99
99
  } \
100
100
  inline void klass ## _setBackColor(klass* self,FXColor clr){ \
101
101
  self->klass::setBackColor(clr); \
102
102
  } \
103
+ inline const FXchar* klass ## _tr(const klass* self,const FXchar* message,const FXchar* hint) { \
104
+ return self->klass::tr(message,hint); \
105
+ } \
103
106
  inline void klass ## _setShape(klass* self,const FXRegion& region){ \
104
107
  self->klass::setShape(region); \
105
108
  } \
@@ -111,6 +114,12 @@ inline void klass ## _setShape(klass* self,FXIcon* icon){ \
111
114
  } \
112
115
  inline void klass ## _clearShape(klass* self){ \
113
116
  self->klass::clearShape(); \
117
+ } \
118
+ inline void klass ## _dropEnable(klass* self){ \
119
+ self->klass::dropEnable(); \
120
+ } \
121
+ inline void klass ## _dropDisable(klass* self){ \
122
+ self->klass::dropDisable(); \
114
123
  }
115
124
 
116
125
 
@@ -130,7 +139,7 @@ inline void klass ## _clearShape(klass* self){ \
130
139
  FXint cls::getHeightForWidth(FXint givenwidth){ \
131
140
  return FXRbCallIntMethod(this,rb_intern("getHeightForWidth"),givenwidth); \
132
141
  } \
133
- FXbool cls::canFocus() const { \
142
+ bool cls::canFocus() const { \
134
143
  return FXRbCallBoolMethod(this,rb_intern("canFocus")); \
135
144
  } \
136
145
  void cls::setFocus(){ \
@@ -175,18 +184,21 @@ inline void klass ## _clearShape(klass* self){ \
175
184
  void cls::hide(){ \
176
185
  FXRbCallVoidMethod(this,rb_intern("hide")); \
177
186
  } \
178
- FXbool cls::isComposite() const { \
187
+ bool cls::isComposite() const { \
179
188
  return FXRbCallBoolMethod(this,rb_intern("isComposite")); \
180
189
  } \
181
- FXbool cls::contains(FXint parentx,FXint parenty) const{ \
190
+ bool cls::contains(FXint parentx,FXint parenty) const{ \
182
191
  return FXRbCallBoolMethod(this,rb_intern("contains"),parentx,parenty); \
183
192
  } \
184
- FXbool cls::doesSaveUnder() const { \
193
+ bool cls::doesSaveUnder() const { \
185
194
  return FXRbCallBoolMethod(this,rb_intern("doesSaveUnder")); \
186
195
  } \
187
196
  void cls::setBackColor(FXColor clr) { \
188
197
  FXRbCallVoidMethod(this,rb_intern("setBackColor"),clr); \
189
198
  } \
199
+ const FXchar* cls::tr(const FXchar* message,const FXchar* hint) const { \
200
+ return FXRbCallCStringMethod(this,rb_intern("tr"),message,hint); \
201
+ } \
190
202
  void cls::setShape(const FXRegion& region) { \
191
203
  FXRbCallVoidMethod(this,rb_intern("setShape"),region); \
192
204
  } \
@@ -198,6 +210,12 @@ inline void klass ## _clearShape(klass* self){ \
198
210
  } \
199
211
  void cls::clearShape() { \
200
212
  FXRbCallVoidMethod(this,rb_intern("clearShape")); \
213
+ } \
214
+ void cls::dropEnable() { \
215
+ FXRbCallVoidMethod(this,rb_intern("dropEnable")); \
216
+ } \
217
+ void cls::dropDisable() { \
218
+ FXRbCallVoidMethod(this,rb_intern("dropDisable")); \
201
219
  }
202
220
 
203
221
  class FXRbWindow : public FXWindow {
@@ -15,7 +15,7 @@ public:
15
15
  virtual FXint getHeightForWidth(FXint givenwidth);
16
16
 
17
17
  // Overrides the base class version of canFocus()
18
- virtual FXbool canFocus() const;
18
+ virtual bool canFocus() const;
19
19
 
20
20
  // Overrides the base class version of setFocus()
21
21
  virtual void setFocus();
@@ -60,17 +60,26 @@ public:
60
60
  virtual void hide();
61
61
 
62
62
  // Overrides the base class version of isComposite()
63
- virtual FXbool isComposite() const;
63
+ virtual bool isComposite() const;
64
64
 
65
65
  // Overrides the base class version of contains()
66
- virtual FXbool contains(FXint parentx,FXint parenty) const;
66
+ virtual bool contains(FXint parentx,FXint parenty) const;
67
67
 
68
68
  // Overrides the base class version of doesSaveUnder()
69
- virtual FXbool doesSaveUnder() const;
69
+ virtual bool doesSaveUnder() const;
70
70
 
71
71
  // Overrides the base class version of setBackColor()
72
72
  virtual void setBackColor(FXColor clr);
73
73
 
74
+ // Overrides the base class version of tr()
75
+ virtual const FXchar* tr(const FXchar* message,const FXchar* hint=NULL) const;
76
+
77
+ /// Overrides the base class version of dropEnable()
78
+ virtual void dropEnable();
79
+
80
+ /// Overrides the base class version of dropDisable()
81
+ virtual void dropDisable();
82
+
74
83
  /// Overrides the base class version of setShape()
75
84
  virtual void setShape(const FXRegion& region);
76
85
 
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbWizard.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbWizard.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBWIZARD_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbXBMIcon.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbXBMIcon.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBXBMICON_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbXBMImage.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbXBMImage.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBXBMIMAGE_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbXPMIcon.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbXPMIcon.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBXPMICON_H
@@ -21,7 +21,7 @@
21
21
  ***********************************************************************/
22
22
 
23
23
  /***********************************************************************
24
- * $Id: FXRbXPMImage.h 2137 2005-08-14 15:12:43Z lyle $
24
+ * $Id: FXRbXPMImage.h 2190 2005-08-24 07:58:47Z lyle $
25
25
  ***********************************************************************/
26
26
 
27
27
  #ifndef FXRBXPMIMAGE_H
@@ -261,6 +261,10 @@ inline VALUE to_ruby(FXFontDesc* fontdesc){
261
261
  return FXRbNewPointerObj(reinterpret_cast<void*>(fontdesc),FXRbTypeQuery("FXFontDesc *"));
262
262
  }
263
263
 
264
+ inline VALUE to_ruby(const FXFontDesc& fontdesc){
265
+ return FXRbNewPointerObj(reinterpret_cast<void*>(const_cast<FXFontDesc*>(&fontdesc)),FXRbTypeQuery("FXFontDesc *"));
266
+ }
267
+
264
268
  inline VALUE to_ruby(FXDC& dc){
265
269
  return FXRbGetRubyObj(reinterpret_cast<void*>(&dc),FXRbTypeQuery("FXDC *"));
266
270
  }
@@ -406,6 +410,14 @@ void FXRbCallVoidMethod(FXDC* recv, ID func, TYPE1 arg1, TYPE2 arg2, TYPE3 arg3,
406
410
  rb_funcall(obj,func,7,to_ruby(arg1),to_ruby(arg2),to_ruby(arg3),to_ruby(arg4),to_ruby(arg5),to_ruby(arg6),to_ruby(arg7));
407
411
  }
408
412
 
413
+ /* Nine arguments */
414
+ template<class TYPE1, class TYPE2, class TYPE3, class TYPE4, class TYPE5, class TYPE6, class TYPE7, class TYPE8, class TYPE9>
415
+ void FXRbCallVoidMethod(FXDC* recv, ID func, TYPE1 arg1, TYPE2 arg2, TYPE3 arg3, TYPE4 arg4, TYPE5 arg5, TYPE6 arg6, TYPE7 arg7, TYPE8 arg8, TYPE9 arg9){
416
+ VALUE obj=FXRbGetRubyObj(recv,false);
417
+ FXASSERT(!NIL_P(obj));
418
+ rb_funcall(obj,func,9,to_ruby(arg1),to_ruby(arg2),to_ruby(arg3),to_ruby(arg4),to_ruby(arg5),to_ruby(arg6),to_ruby(arg7), to_ruby(arg8), to_ruby(arg9));
419
+ }
420
+
409
421
  /* Eleven arguments (!) */
410
422
  template<class TYPE1,class TYPE2,class TYPE3,class TYPE4,class TYPE5,class TYPE6,class TYPE7,class TYPE8,class TYPE9,class TYPE10,class TYPE11>
411
423
  void FXRbCallVoidMethod(FXObject* recv,ID func,TYPE1& arg1,TYPE2 arg2,TYPE3 arg3,TYPE4 arg4,TYPE5 arg5,TYPE6 arg6,TYPE7 arg7,TYPE8 arg8,TYPE9 arg9,TYPE10 arg10,TYPE11 arg11){
@@ -415,65 +427,65 @@ void FXRbCallVoidMethod(FXObject* recv,ID func,TYPE1& arg1,TYPE2 arg2,TYPE3 arg3
415
427
  }
416
428
 
417
429
  // Call function with "FXbool" return value
418
- inline FXbool FXRbCallBoolMethod(FXStream* recv,ID func){
430
+ inline bool FXRbCallBoolMethod(FXStream* recv,ID func){
419
431
  VALUE v=rb_funcall(FXRbGetRubyObj(recv,false),func,0,NULL);
420
- return (v==Qtrue)?TRUE:FALSE;
432
+ return (v==Qtrue);
421
433
  }
422
434
 
423
435
  template<class TYPE1>
424
- FXbool FXRbCallBoolMethod(FXStream* recv,ID func,TYPE1 arg){
436
+ bool FXRbCallBoolMethod(FXStream* recv,ID func,TYPE1 arg){
425
437
  VALUE v=rb_funcall(FXRbGetRubyObj(recv,false),func,1,to_ruby(arg));
426
- return (v==Qtrue)?TRUE:FALSE;
438
+ return (v==Qtrue);
427
439
  }
428
440
 
429
441
  template<class TYPE1,class TYPE2>
430
- FXbool FXRbCallBoolMethod(FXStream* recv,ID func,TYPE1 arg1,TYPE2 arg2){
442
+ bool FXRbCallBoolMethod(FXStream* recv,ID func,TYPE1 arg1,TYPE2 arg2){
431
443
  VALUE v=rb_funcall(FXRbGetRubyObj(recv,false),func,2,to_ruby(arg1),to_ruby(arg2));
432
- return (v==Qtrue)?TRUE:FALSE;
444
+ return (v==Qtrue);
433
445
  }
434
446
 
435
- FXbool FXRbCallBoolMethod(const FXObject* recv,ID func);
447
+ bool FXRbCallBoolMethod(const FXObject* recv,ID func);
436
448
 
437
449
  template<class TYPE>
438
- FXbool FXRbCallBoolMethod(FXObject* recv, ID func, TYPE& arg){
450
+ bool FXRbCallBoolMethod(FXObject* recv, ID func, TYPE& arg){
439
451
  VALUE obj=FXRbGetRubyObj(recv,false);
440
452
  FXASSERT(!NIL_P(obj));
441
453
  VALUE v=rb_funcall(obj,func,1,to_ruby(arg));
442
- return (v==Qtrue)?TRUE:FALSE;
454
+ return (v==Qtrue);
443
455
  }
444
456
 
445
457
  template<class TYPE>
446
- FXbool FXRbCallBoolMethod(const FXObject* recv,ID func,TYPE& arg){
458
+ bool FXRbCallBoolMethod(const FXObject* recv,ID func,TYPE& arg){
447
459
  VALUE v=rb_funcall(FXRbGetRubyObj(recv,false),func,1,to_ruby(arg));
448
- return (v==Qtrue)?TRUE:FALSE;
460
+ return (v==Qtrue);
449
461
  }
450
462
 
451
463
  template<class TYPE1, class TYPE2>
452
- FXbool FXRbCallBoolMethod(const FXObject* recv, ID func, TYPE1 arg1, TYPE2 arg2){
464
+ bool FXRbCallBoolMethod(const FXObject* recv, ID func, TYPE1 arg1, TYPE2 arg2){
453
465
  VALUE obj=FXRbGetRubyObj(recv,false);
454
466
  FXASSERT(!NIL_P(obj));
455
467
  VALUE v=rb_funcall(obj,func,2,to_ruby(arg1),to_ruby(arg2));
456
- return (v==Qtrue)?TRUE:FALSE;
468
+ return (v==Qtrue);
457
469
  }
458
470
 
459
471
  template<class TYPE1, class TYPE2, class TYPE3>
460
- FXbool FXRbCallBoolMethod(const FXObject* recv, ID func, TYPE1 arg1, TYPE2 arg2, TYPE3 arg3){
472
+ bool FXRbCallBoolMethod(const FXObject* recv, ID func, TYPE1 arg1, TYPE2 arg2, TYPE3 arg3){
461
473
  VALUE obj=FXRbGetRubyObj(recv,false);
462
474
  FXASSERT(!NIL_P(obj));
463
475
  VALUE v=rb_funcall(obj,func,3,to_ruby(arg1),to_ruby(arg2),to_ruby(arg3));
464
- return (v==Qtrue)?TRUE:FALSE;
476
+ return (v==Qtrue);
465
477
  }
466
478
 
467
479
  template<class TYPE1, class TYPE2, class TYPE3, class TYPE4, class TYPE5>
468
- FXbool FXRbCallBoolMethod(const FXObject* recv, ID func, TYPE1 arg1, TYPE2 arg2, TYPE3 arg3, TYPE4 arg4, TYPE5 arg5){
480
+ bool FXRbCallBoolMethod(const FXObject* recv, ID func, TYPE1 arg1, TYPE2 arg2, TYPE3 arg3, TYPE4 arg4, TYPE5 arg5){
469
481
  VALUE obj=FXRbGetRubyObj(recv,false);
470
482
  FXASSERT(!NIL_P(obj));
471
483
  VALUE v=rb_funcall(obj,func,5,to_ruby(arg1),to_ruby(arg2),to_ruby(arg3),to_ruby(arg4),to_ruby(arg5));
472
- return (v==Qtrue)?TRUE:FALSE;
484
+ return (v==Qtrue);
473
485
  }
474
486
 
475
487
  // Call function with "FXint" return value
476
- FXint FXRbCallIntMethod(FXObject* recv,ID func);
488
+ FXint FXRbCallIntMethod(const FXObject* recv,ID func);
477
489
 
478
490
  template<class TYPE>
479
491
  FXint FXRbCallIntMethod(FXObject* recv, ID func, TYPE arg){
@@ -528,6 +540,9 @@ FXuint FXRbCallUIntMethod(FXObject* recv, ID func, TYPE arg){
528
540
  // Call functions with FXString return value
529
541
  FXString FXRbCallStringMethod(const FXObject* recv, ID func);
530
542
 
543
+ // Call functions with const FXchar* return value
544
+ const FXchar* FXRbCallCStringMethod(const FXObject* recv, ID func, const FXchar*, const FXchar*);
545
+ const FXchar* FXRbCallCStringMethod(const FXObject* recv, ID func, const FXchar*, const FXchar*, const FXchar*);
531
546
 
532
547
  // Call functions with "FXGLObject*" return value
533
548
  FXGLObject* FXRbCallGLObjectMethod(FXGLObject* recv,ID func);
@@ -540,6 +555,9 @@ FXGLObject** FXRbCallGLObjectArrayMethod(FXGLViewer* recv,ID func,FXint x,FXint
540
555
  // Call functions with "FXTreeItem*" return value
541
556
  FXTableItem* FXRbCallTableItemMethod(FXTable* recv,ID func,const FXString& text,FXIcon* icon,void* ptr);
542
557
 
558
+ // Call functions with "FXTreeItem*" return value
559
+ FXTableItem* FXRbCallTableItemMethod(FXTable* recv,ID func,FXint,FXint,FXbool);
560
+
543
561
  // Call functions with "FXFileAssoc*" return value
544
562
  FXFileAssoc* FXRbCallFileAssocMethod(const FXFileDict* recv,ID func,const FXchar* pathname);
545
563
 
@@ -594,6 +612,9 @@ FXColor FXRbCallColorMethod(FXDC* recv, ID func, TYPE1 arg1, TYPE2 arg2){
594
612
  // Call functions with "FXRangef" return value
595
613
  FXRangef FXRbCallRangeMethod(FXObject* recv,ID func);
596
614
 
615
+ // Call functions with FXwchar return value
616
+ FXwchar FXRbCallWCharMethod(const FXObject* recv,ID func);
617
+
597
618
  /**
598
619
  * Macro to set up class implementation.
599
620
  * This is a modified version of the standard FOX macro FXIMPLEMENT();
@@ -668,6 +689,7 @@ FXRangef FXRbCallRangeMethod(FXObject* recv,ID func);
668
689
  #include "FXRbFileDict.h"
669
690
  #include "FXRbWindow.h"
670
691
  #include "FXRbFrame.h"
692
+ #include "FXRbKnob.h"
671
693
  #include "FXRb7Segment.h"
672
694
  #include "FXRbDockHandler.h"
673
695
  #include "FXRbDockTitle.h"
@@ -675,6 +697,7 @@ FXRangef FXRbCallRangeMethod(FXObject* recv,ID func);
675
697
  #include "FXRbLabel.h"
676
698
  #include "FXRbDial.h"
677
699
  #include "FXRbColorBar.h"
700
+ #include "FXRbColorRing.h"
678
701
  #include "FXRbColorWell.h"
679
702
  #include "FXRbColorWheel.h"
680
703
  #include "FXRbTextField.h"
@@ -726,6 +749,7 @@ FXRangef FXRbCallRangeMethod(FXObject* recv,ID func);
726
749
  #include "FXRbScrollArea.h"
727
750
  #include "FXRbScrollWindow.h"
728
751
  #include "FXRbList.h"
752
+ #include "FXRbColorList.h"
729
753
  #include "FXRbComboBox.h"
730
754
  #include "FXRbListBox.h"
731
755
  #include "FXRbFoldingList.h"
@@ -785,6 +809,7 @@ FXRangef FXRbCallRangeMethod(FXObject* recv,ID func);
785
809
  #endif
786
810
  #include "FXRbSettings.h"
787
811
  #include "FXRbRegistry.h"
812
+ #include "FXRbTranslator.h"
788
813
 
789
814
  // OpenGL support
790
815
  #include "FXRbGLVisual.h"
@@ -35,6 +35,9 @@ FXRbIMPLEMENT(FXRbCheckButton,FXCheckButton,NULL,0)
35
35
  FXRbIMPLEMENT(FXRbChoiceBox,FXChoiceBox,NULL,0)
36
36
  FXRbIMPLEMENT(FXRbColorBar,FXColorBar,NULL,0)
37
37
  FXRbIMPLEMENT(FXRbColorDialog,FXColorDialog,NULL,0)
38
+ FXRbIMPLEMENT(FXRbColorItem,FXColorItem,NULL,0)
39
+ FXRbIMPLEMENT(FXRbColorList,FXColorList,NULL,0)
40
+ FXRbIMPLEMENT(FXRbColorRing,FXColorRing,NULL,0)
38
41
  FXRbIMPLEMENT(FXRbColorSelector,FXColorSelector,NULL,0)
39
42
  FXRbIMPLEMENT(FXRbColorWell,FXColorWell,NULL,0)
40
43
  FXRbIMPLEMENT(FXRbColorWheel,FXColorWheel,NULL,0)
@@ -95,6 +98,7 @@ FXRbIMPLEMENT(FXRbImageView,FXImageView,NULL,0)
95
98
  FXRbIMPLEMENT(FXRbInputDialog,FXInputDialog,NULL,0)
96
99
  FXRbIMPLEMENT(FXRbJPGImage,FXJPGImage,NULL,0)
97
100
  FXRbIMPLEMENT(FXRbJPGIcon,FXJPGIcon,NULL,0)
101
+ FXRbIMPLEMENT(FXRbKnob,FXKnob,NULL,0)
98
102
  FXRbIMPLEMENT(FXRbLabel,FXLabel,NULL,0)
99
103
  FXRbIMPLEMENT(FXRbList,FXList,NULL,0)
100
104
  FXRbIMPLEMENT(FXRbListBox,FXListBox,NULL,0)
@@ -185,6 +189,7 @@ FXRbIMPLEMENT(FXRbToolBarShell,FXToolBarShell,NULL,0)
185
189
  FXRbIMPLEMENT(FXRbToolBarTab,FXToolBarTab,NULL,0)
186
190
  FXRbIMPLEMENT(FXRbToolTip,FXToolTip,NULL,0)
187
191
  FXRbIMPLEMENT(FXRbTopWindow,FXTopWindow,NULL,0)
192
+ FXRbIMPLEMENT(FXRbTranslator,FXTranslator,NULL,0)
188
193
  FXRbIMPLEMENT(FXRbTreeItem,FXTreeItem,NULL,0)
189
194
  FXRbIMPLEMENT(FXRbTreeList,FXTreeList,NULL,0)
190
195
  FXRbIMPLEMENT(FXRbTreeListBox,FXTreeListBox,NULL,0)
@@ -94,6 +94,24 @@ DECLARE_FXWINDOW_STUBS(FXColorDialog)
94
94
  DECLARE_FXTOPWINDOW_STUBS(FXColorDialog)
95
95
  DECLARE_FXDIALOGBOX_STUBS(FXColorDialog)
96
96
 
97
+ /* Start stub declarations for class FXRbColorItem */
98
+ DECLARE_FXOBJECT_STUBS(FXColorItem)
99
+ DECLARE_FXLISTITEM_STUBS(FXColorItem)
100
+
101
+ /* Start stub declarations for class FXRbColorList */
102
+ DECLARE_FXOBJECT_STUBS(FXColorList)
103
+ DECLARE_FXID_STUBS(FXColorList)
104
+ DECLARE_FXDRAWABLE_STUBS(FXColorList)
105
+ DECLARE_FXWINDOW_STUBS(FXColorList)
106
+ DECLARE_FXSCROLLAREA_STUBS(FXColorList)
107
+ DECLARE_FXLIST_STUBS(FXColorList)
108
+
109
+ /* Start stub declarations for class FXRbColorRing */
110
+ DECLARE_FXOBJECT_STUBS(FXColorRing)
111
+ DECLARE_FXID_STUBS(FXColorRing)
112
+ DECLARE_FXDRAWABLE_STUBS(FXColorRing)
113
+ DECLARE_FXWINDOW_STUBS(FXColorRing)
114
+
97
115
  /* Start stub declarations for class FXRbColorSelector */
98
116
  DECLARE_FXOBJECT_STUBS(FXColorSelector)
99
117
  DECLARE_FXID_STUBS(FXColorSelector)
@@ -292,6 +310,7 @@ DECLARE_FXFOLDINGLIST_STUBS(FXFoldingList)
292
310
  /* Start stub declarations for class FXRbFont */
293
311
  DECLARE_FXOBJECT_STUBS(FXFont)
294
312
  DECLARE_FXID_STUBS(FXFont)
313
+ DECLARE_FXFONT_STUBS(FXFont)
295
314
 
296
315
  /* Start stub declarations for class FXRbFontDialog */
297
316
  DECLARE_FXOBJECT_STUBS(FXFontDialog)
@@ -467,6 +486,12 @@ DECLARE_FXID_STUBS(FXJPGImage)
467
486
  DECLARE_FXDRAWABLE_STUBS(FXJPGImage)
468
487
  DECLARE_FXIMAGE_STUBS(FXJPGImage)
469
488
 
489
+ /* Start stub declarations for class FXRbKnob */
490
+ DECLARE_FXOBJECT_STUBS(FXKnob)
491
+ DECLARE_FXID_STUBS(FXKnob)
492
+ DECLARE_FXDRAWABLE_STUBS(FXKnob)
493
+ DECLARE_FXWINDOW_STUBS(FXKnob)
494
+
470
495
  /* Start stub declarations for class FXRbLabel */
471
496
  DECLARE_FXOBJECT_STUBS(FXLabel)
472
497
  DECLARE_FXID_STUBS(FXLabel)
@@ -1044,6 +1069,10 @@ DECLARE_FXDRAWABLE_STUBS(FXTopWindow)
1044
1069
  DECLARE_FXWINDOW_STUBS(FXTopWindow)
1045
1070
  DECLARE_FXTOPWINDOW_STUBS(FXTopWindow)
1046
1071
 
1072
+ /* Start stub declarations for class FXRbTranslator */
1073
+ DECLARE_FXOBJECT_STUBS(FXTranslator)
1074
+ DECLARE_FXTRANSLATOR_STUBS(FXTranslator)
1075
+
1047
1076
  /* Start stub declarations for class FXRbTreeItem */
1048
1077
  DECLARE_FXOBJECT_STUBS(FXTreeItem)
1049
1078
  DECLARE_FXTREEITEM_STUBS(FXTreeItem,FXRbTreeItem)