fxruby 1.4.7 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (527) hide show
  1. data/doc/apes02.html +6 -6
  2. data/doc/apes03.html +11 -11
  3. data/doc/book.html +1 -1
  4. data/doc/build.html +65 -67
  5. data/doc/ch03s02.html +7 -7
  6. data/doc/ch03s03.html +18 -18
  7. data/doc/ch03s04.html +11 -11
  8. data/doc/ch03s05.html +14 -14
  9. data/doc/ch04s02.html +14 -14
  10. data/doc/ch04s03.html +15 -15
  11. data/doc/ch04s04.html +28 -28
  12. data/doc/ch05s02.html +49 -49
  13. data/doc/ch05s03.html +8 -8
  14. data/doc/clipboardtut.html +45 -57
  15. data/doc/cvs.html +10 -10
  16. data/doc/differences.html +4 -4
  17. data/doc/dragdroptut.html +50 -50
  18. data/doc/events.html +11 -11
  19. data/doc/examples.html +48 -48
  20. data/doc/gems.html +38 -38
  21. data/doc/goals.html +4 -4
  22. data/doc/implementation.html +4 -4
  23. data/doc/infosources.html +9 -9
  24. data/doc/library.html +19 -19
  25. data/doc/opengl.html +31 -31
  26. data/doc/pt01.html +1 -1
  27. data/doc/pt02.html +1 -1
  28. data/doc/scintilla.html +15 -15
  29. data/doc/todo.html +6 -6
  30. data/doc/tutorial1.html +34 -34
  31. data/examples/babelfish.rb +1 -1
  32. data/examples/bounce.rb +1 -1
  33. data/examples/browser.rb +2 -2
  34. data/examples/button.rb +1 -1
  35. data/examples/datatarget.rb +2 -2
  36. data/examples/dctest.rb +12 -12
  37. data/examples/dialog.rb +1 -1
  38. data/examples/dilbert.rb +2 -2
  39. data/examples/dirlist.rb +1 -1
  40. data/examples/dragdrop.rb +1 -1
  41. data/examples/dragsource.rb +1 -1
  42. data/examples/dropsite.rb +1 -1
  43. data/examples/foursplit.rb +1 -1
  44. data/examples/gltest.rb +2 -2
  45. data/examples/glviewer.rb +4 -4
  46. data/examples/groupbox.rb +22 -22
  47. data/examples/header.rb +1 -1
  48. data/examples/hello.rb +1 -1
  49. data/examples/hello2.rb +1 -1
  50. data/examples/iconlist.rb +1 -1
  51. data/examples/image.rb +2 -2
  52. data/examples/imageviewer.rb +1 -1
  53. data/examples/inputs.rb +1 -1
  54. data/examples/mditest.rb +2 -2
  55. data/examples/pig.rb +1 -1
  56. data/examples/raabrowser.rb +2 -2
  57. data/examples/ratio.rb +2 -2
  58. data/examples/scintilla-test.rb +2 -2
  59. data/examples/scribble-orig.rb +3 -3
  60. data/examples/scribble.rb +1 -1
  61. data/examples/shutter.rb +1 -1
  62. data/examples/splitter.rb +36 -36
  63. data/examples/styledtext.rb +2 -2
  64. data/examples/tabbook.rb +1 -1
  65. data/examples/table.rb +1 -1
  66. data/examples/textedit/commands.rb +2 -2
  67. data/examples/textedit/helpwindow.rb +1 -1
  68. data/examples/textedit/prefdialog.rb +1 -1
  69. data/examples/textedit/textedit.rb +5 -3
  70. data/ext/{fox14 → fox16}/FXRbApp.cpp +1 -1
  71. data/ext/{fox14 → fox16}/FXRbDataTarget.cpp +1 -1
  72. data/ext/{fox14 → fox16}/FXRbGLViewer.cpp +1 -1
  73. data/ext/{fox14 → fox16}/FXRuby.cpp +137 -39
  74. data/ext/{fox14 → fox16}/MANIFEST +0 -0
  75. data/ext/{fox14 → fox16}/core_wrap.cpp +1177 -659
  76. data/ext/{fox14 → fox16}/dc_wrap.cpp +110 -3
  77. data/ext/{fox14 → fox16}/dialogs_wrap.cpp +381 -153
  78. data/ext/{fox14 → fox16}/extconf.rb +8 -8
  79. data/ext/{fox14 → fox16}/frames_wrap.cpp +1590 -1219
  80. data/ext/{fox14 → fox16}/fx3d_wrap.cpp +1060 -403
  81. data/ext/{fox14 → fox16}/iconlist_wrap.cpp +80 -25
  82. data/ext/{fox14 → fox16}/icons_wrap.cpp +296 -316
  83. data/ext/{fox14 → fox16}/image_wrap.cpp +267 -153
  84. data/ext/{fox14 → fox16}/impl.cpp +29 -0
  85. data/ext/{fox14 → fox16}/include/FXMemoryBuffer.h +1 -1
  86. data/ext/{fox14 → fox16}/include/FXRb4Splitter.h +1 -1
  87. data/ext/{fox14 → fox16}/include/FXRb7Segment.h +1 -1
  88. data/ext/{fox14 → fox16}/include/FXRbAccelTable.h +1 -1
  89. data/ext/{fox14 → fox16}/include/FXRbApp.h +3 -3
  90. data/ext/{fox14 → fox16}/include/FXRbAppVirtuals.h +1 -1
  91. data/ext/{fox14 → fox16}/include/FXRbArrowButton.h +1 -1
  92. data/ext/{fox14 → fox16}/include/FXRbBMPIcon.h +1 -1
  93. data/ext/{fox14 → fox16}/include/FXRbBMPImage.h +1 -1
  94. data/ext/{fox14 → fox16}/include/FXRbBitmap.h +23 -5
  95. data/ext/{fox14 → fox16}/include/FXRbBitmapFrame.h +1 -1
  96. data/ext/{fox14 → fox16}/include/FXRbBitmapView.h +1 -1
  97. data/ext/{fox14 → fox16}/include/FXRbBitmapVirtuals.h +12 -2
  98. data/ext/{fox14 → fox16}/include/FXRbButton.h +1 -1
  99. data/ext/{fox14 → fox16}/include/FXRbCURCursor.h +1 -1
  100. data/ext/{fox14 → fox16}/include/FXRbCanvas.h +1 -1
  101. data/ext/{fox14 → fox16}/include/FXRbCheckButton.h +1 -1
  102. data/ext/{fox14 → fox16}/include/FXRbChoiceBox.h +1 -1
  103. data/ext/{fox14 → fox16}/include/FXRbColorBar.h +1 -1
  104. data/ext/{fox14 → fox16}/include/FXRbColorDialog.h +1 -1
  105. data/ext/fox16/include/FXRbColorList.h +84 -0
  106. data/ext/fox16/include/FXRbColorRing.h +51 -0
  107. data/ext/{fox14 → fox16}/include/FXRbColorSelector.h +1 -1
  108. data/ext/{fox14 → fox16}/include/FXRbColorWell.h +1 -1
  109. data/ext/{fox14 → fox16}/include/FXRbColorWheel.h +1 -1
  110. data/ext/{fox14 → fox16}/include/FXRbComboBox.h +1 -1
  111. data/ext/{fox14 → fox16}/include/FXRbCommon.h +4 -1
  112. data/ext/{fox14 → fox16}/include/FXRbComposite.h +1 -1
  113. data/ext/{fox14 → fox16}/include/FXRbCursor.h +5 -5
  114. data/ext/{fox14 → fox16}/include/FXRbCursorVirtuals.h +2 -2
  115. data/ext/{fox14 → fox16}/include/FXRbDC.h +18 -0
  116. data/ext/{fox14 → fox16}/include/FXRbDCPrint.h +0 -0
  117. data/ext/{fox14 → fox16}/include/FXRbDCVirtuals.h +9 -0
  118. data/ext/{fox14 → fox16}/include/FXRbDCWindow.h +0 -0
  119. data/ext/{fox14 → fox16}/include/FXRbDataTarget.h +1 -1
  120. data/ext/{fox14 → fox16}/include/FXRbDebugTarget.h +1 -1
  121. data/ext/{fox14 → fox16}/include/FXRbDelegator.h +1 -1
  122. data/ext/{fox14 → fox16}/include/FXRbDial.h +1 -1
  123. data/ext/{fox14 → fox16}/include/FXRbDialogBox.h +1 -1
  124. data/ext/{fox14 → fox16}/include/FXRbDialogBoxVirtuals.h +0 -0
  125. data/ext/{fox14 → fox16}/include/FXRbDict.h +1 -1
  126. data/ext/{fox14 → fox16}/include/FXRbDirBox.h +1 -1
  127. data/ext/{fox14 → fox16}/include/FXRbDirDialog.h +1 -1
  128. data/ext/{fox14 → fox16}/include/FXRbDirList.h +1 -1
  129. data/ext/{fox14 → fox16}/include/FXRbDirSelector.h +1 -1
  130. data/ext/{fox14 → fox16}/include/FXRbDockBar.h +13 -13
  131. data/ext/{fox14 → fox16}/include/FXRbDockBarVirtuals.h +3 -3
  132. data/ext/{fox14 → fox16}/include/FXRbDockHandler.h +1 -1
  133. data/ext/{fox14 → fox16}/include/FXRbDockSite.h +1 -1
  134. data/ext/{fox14 → fox16}/include/FXRbDockSiteVirtuals.h +0 -0
  135. data/ext/{fox14 → fox16}/include/FXRbDockTitle.h +1 -1
  136. data/ext/{fox14 → fox16}/include/FXRbDocument.h +1 -1
  137. data/ext/{fox14 → fox16}/include/FXRbDragCorner.h +1 -1
  138. data/ext/{fox14 → fox16}/include/FXRbDrawable.h +1 -1
  139. data/ext/{fox14 → fox16}/include/FXRbDrawableVirtuals.h +0 -0
  140. data/ext/{fox14 → fox16}/include/FXRbDriveBox.h +1 -1
  141. data/ext/{fox14 → fox16}/include/FXRbFileDialog.h +1 -1
  142. data/ext/{fox14 → fox16}/include/FXRbFileDict.h +1 -1
  143. data/ext/{fox14 → fox16}/include/FXRbFileDictVirtuals.h +0 -0
  144. data/ext/{fox14 → fox16}/include/FXRbFileList.h +1 -1
  145. data/ext/{fox14 → fox16}/include/FXRbFileSelector.h +1 -1
  146. data/ext/{fox14 → fox16}/include/FXRbFoldingItemVirtuals.h +0 -0
  147. data/ext/{fox14 → fox16}/include/FXRbFoldingList.h +1 -1
  148. data/ext/{fox14 → fox16}/include/FXRbFoldingListVirtuals.h +0 -0
  149. data/ext/fox16/include/FXRbFont.h +183 -0
  150. data/ext/{fox14 → fox16}/include/FXRbFontDialog.h +1 -1
  151. data/ext/{fox14 → fox16}/include/FXRbFontSelector.h +1 -1
  152. data/ext/fox16/include/FXRbFontVirtuals.h +55 -0
  153. data/ext/{fox14 → fox16}/include/FXRbFrame.h +1 -1
  154. data/ext/{fox14 → fox16}/include/FXRbGIFCursor.h +1 -1
  155. data/ext/{fox14 → fox16}/include/FXRbGIFIcon.h +1 -1
  156. data/ext/{fox14 → fox16}/include/FXRbGIFImage.h +1 -1
  157. data/ext/{fox14 → fox16}/include/FXRbGLCanvas.h +1 -1
  158. data/ext/{fox14 → fox16}/include/FXRbGLCanvasVirtuals.h +0 -0
  159. data/ext/{fox14 → fox16}/include/FXRbGLContext.h +1 -1
  160. data/ext/{fox14 → fox16}/include/FXRbGLObject.h +1 -1
  161. data/ext/{fox14 → fox16}/include/FXRbGLObjectVirtuals.h +0 -0
  162. data/ext/{fox14 → fox16}/include/FXRbGLShape.h +1 -1
  163. data/ext/{fox14 → fox16}/include/FXRbGLShapeVirtuals.h +0 -0
  164. data/ext/{fox14 → fox16}/include/FXRbGLViewer.h +1 -1
  165. data/ext/{fox14 → fox16}/include/FXRbGLViewerVirtuals.h +0 -0
  166. data/ext/{fox14 → fox16}/include/FXRbGLVisual.h +1 -1
  167. data/ext/{fox14 → fox16}/include/FXRbGradientBar.h +1 -1
  168. data/ext/{fox14 → fox16}/include/FXRbGroupBox.h +1 -1
  169. data/ext/{fox14 → fox16}/include/FXRbHeader.h +1 -1
  170. data/ext/{fox14 → fox16}/include/FXRbHeaderItemVirtuals.h +0 -0
  171. data/ext/{fox14 → fox16}/include/FXRbHorizontalFrame.h +1 -1
  172. data/ext/{fox14 → fox16}/include/FXRbICOIcon.h +1 -1
  173. data/ext/{fox14 → fox16}/include/FXRbICOImage.h +1 -1
  174. data/ext/{fox14 → fox16}/include/FXRbIcon.h +1 -1
  175. data/ext/{fox14 → fox16}/include/FXRbIconItemVirtuals.h +0 -0
  176. data/ext/{fox14 → fox16}/include/FXRbIconList.h +1 -1
  177. data/ext/{fox14 → fox16}/include/FXRbIconListVirtuals.h +0 -0
  178. data/ext/fox16/include/FXRbIconSource.h +127 -0
  179. data/ext/fox16/include/FXRbIconSourceVirtuals.h +37 -0
  180. data/ext/{fox14 → fox16}/include/FXRbId.h +1 -1
  181. data/ext/{fox14 → fox16}/include/FXRbIdVirtuals.h +0 -0
  182. data/ext/{fox14 → fox16}/include/FXRbImage.h +7 -7
  183. data/ext/{fox14 → fox16}/include/FXRbImageFrame.h +1 -1
  184. data/ext/{fox14 → fox16}/include/FXRbImageView.h +1 -1
  185. data/ext/{fox14 → fox16}/include/FXRbImageVirtuals.h +3 -3
  186. data/ext/{fox14 → fox16}/include/FXRbInputDialog.h +1 -1
  187. data/ext/{fox14 → fox16}/include/FXRbJPGIcon.h +2 -2
  188. data/ext/{fox14 → fox16}/include/FXRbJPGImage.h +2 -2
  189. data/ext/fox16/include/FXRbKnob.h +51 -0
  190. data/ext/{fox14 → fox16}/include/FXRbLabel.h +1 -1
  191. data/ext/{fox14 → fox16}/include/FXRbList.h +1 -1
  192. data/ext/{fox14 → fox16}/include/FXRbListBox.h +5 -5
  193. data/ext/{fox14 → fox16}/include/FXRbListBoxVirtuals.h +1 -1
  194. data/ext/{fox14 → fox16}/include/FXRbListItemVirtuals.h +0 -0
  195. data/ext/{fox14 → fox16}/include/FXRbListVirtuals.h +0 -0
  196. data/ext/{fox14 → fox16}/include/FXRbMDIButton.h +1 -1
  197. data/ext/{fox14 → fox16}/include/FXRbMDIChild.h +1 -1
  198. data/ext/{fox14 → fox16}/include/FXRbMDIChildVirtuals.h +0 -0
  199. data/ext/{fox14 → fox16}/include/FXRbMDIClient.h +1 -1
  200. data/ext/{fox14 → fox16}/include/FXRbMDIClientVirtuals.h +0 -0
  201. data/ext/{fox14 → fox16}/include/FXRbMainWindow.h +1 -1
  202. data/ext/{fox14 → fox16}/include/FXRbMatrix.h +1 -1
  203. data/ext/{fox14 → fox16}/include/FXRbMenuBar.h +1 -1
  204. data/ext/{fox14 → fox16}/include/FXRbMenuButton.h +1 -1
  205. data/ext/{fox14 → fox16}/include/FXRbMenuCaption.h +1 -1
  206. data/ext/{fox14 → fox16}/include/FXRbMenuCascade.h +1 -1
  207. data/ext/{fox14 → fox16}/include/FXRbMenuCheck.h +1 -1
  208. data/ext/{fox14 → fox16}/include/FXRbMenuCommand.h +1 -1
  209. data/ext/{fox14 → fox16}/include/FXRbMenuPane.h +1 -1
  210. data/ext/{fox14 → fox16}/include/FXRbMenuRadio.h +1 -1
  211. data/ext/{fox14 → fox16}/include/FXRbMenuSeparator.h +1 -1
  212. data/ext/{fox14 → fox16}/include/FXRbMenuTitle.h +1 -1
  213. data/ext/{fox14 → fox16}/include/FXRbMessageBox.h +1 -1
  214. data/ext/{fox14 → fox16}/include/FXRbObject.h +1 -1
  215. data/ext/{fox14 → fox16}/include/FXRbObjectVirtuals.h +0 -0
  216. data/ext/{fox14 → fox16}/include/FXRbOptionMenu.h +1 -1
  217. data/ext/{fox14 → fox16}/include/FXRbPCXIcon.h +1 -1
  218. data/ext/{fox14 → fox16}/include/FXRbPCXImage.h +1 -1
  219. data/ext/{fox14 → fox16}/include/FXRbPNGIcon.h +1 -1
  220. data/ext/{fox14 → fox16}/include/FXRbPNGImage.h +1 -1
  221. data/ext/{fox14 → fox16}/include/FXRbPPMIcon.h +1 -1
  222. data/ext/{fox14 → fox16}/include/FXRbPPMImage.h +1 -1
  223. data/ext/{fox14 → fox16}/include/FXRbPacker.h +1 -1
  224. data/ext/{fox14 → fox16}/include/FXRbPicker.h +1 -1
  225. data/ext/{fox14 → fox16}/include/FXRbPopup.h +1 -1
  226. data/ext/{fox14 → fox16}/include/FXRbPopupVirtuals.h +0 -0
  227. data/ext/{fox14 → fox16}/include/FXRbPrintDialog.h +1 -1
  228. data/ext/{fox14 → fox16}/include/FXRbProgressBar.h +1 -1
  229. data/ext/{fox14 → fox16}/include/FXRbProgressDialog.h +1 -1
  230. data/ext/{fox14 → fox16}/include/FXRbRGBIcon.h +1 -1
  231. data/ext/{fox14 → fox16}/include/FXRbRGBImage.h +1 -1
  232. data/ext/{fox14 → fox16}/include/FXRbRadioButton.h +1 -1
  233. data/ext/{fox14 → fox16}/include/FXRbRealSlider.h +1 -1
  234. data/ext/{fox14 → fox16}/include/FXRbRealSpinner.h +5 -5
  235. data/ext/fox16/include/FXRbRealSpinnerVirtuals.h +3 -0
  236. data/ext/{fox14 → fox16}/include/FXRbRecentFiles.h +6 -3
  237. data/ext/{fox14 → fox16}/include/FXRbRegistry.h +1 -1
  238. data/ext/{fox14 → fox16}/include/FXRbReplaceDialog.h +1 -1
  239. data/ext/{fox14 → fox16}/include/FXRbRootWindow.h +1 -1
  240. data/ext/{fox14 → fox16}/include/FXRbRuler.h +1 -1
  241. data/ext/{fox14 → fox16}/include/FXRbScintilla.h +1 -1
  242. data/ext/{fox14 → fox16}/include/FXRbScrollArea.h +1 -1
  243. data/ext/{fox14 → fox16}/include/FXRbScrollAreaVirtuals.h +0 -0
  244. data/ext/{fox14 → fox16}/include/FXRbScrollBar.h +1 -1
  245. data/ext/{fox14 → fox16}/include/FXRbScrollPane.h +1 -1
  246. data/ext/{fox14 → fox16}/include/FXRbScrollWindow.h +1 -1
  247. data/ext/{fox14 → fox16}/include/FXRbSearchDialog.h +1 -1
  248. data/ext/{fox14 → fox16}/include/FXRbSeparator.h +1 -1
  249. data/ext/{fox14 → fox16}/include/FXRbSettings.h +1 -1
  250. data/ext/{fox14 → fox16}/include/FXRbShell.h +1 -1
  251. data/ext/{fox14 → fox16}/include/FXRbShutter.h +1 -1
  252. data/ext/{fox14 → fox16}/include/FXRbShutterVirtuals.h +0 -0
  253. data/ext/{fox14 → fox16}/include/FXRbSlider.h +1 -1
  254. data/ext/{fox14 → fox16}/include/FXRbSpinner.h +5 -5
  255. data/ext/{fox14 → fox16}/include/FXRbSpinnerVirtuals.h +1 -1
  256. data/ext/{fox14 → fox16}/include/FXRbSplashWindow.h +1 -1
  257. data/ext/{fox14 → fox16}/include/FXRbSplitter.h +1 -1
  258. data/ext/{fox14 → fox16}/include/FXRbSpring.h +1 -1
  259. data/ext/{fox14 → fox16}/include/FXRbStatusBar.h +1 -1
  260. data/ext/{fox14 → fox16}/include/FXRbStatusLine.h +1 -1
  261. data/ext/{fox14 → fox16}/include/FXRbStream.h +7 -7
  262. data/ext/{fox14 → fox16}/include/FXRbStreamVirtuals.h +3 -3
  263. data/ext/{fox14 → fox16}/include/FXRbStringDict.h +1 -1
  264. data/ext/{fox14 → fox16}/include/FXRbSwitcher.h +1 -1
  265. data/ext/{fox14 → fox16}/include/FXRbTGAIcon.h +1 -1
  266. data/ext/{fox14 → fox16}/include/FXRbTGAImage.h +1 -1
  267. data/ext/{fox14 → fox16}/include/FXRbTIFIcon.h +1 -1
  268. data/ext/{fox14 → fox16}/include/FXRbTIFImage.h +1 -1
  269. data/ext/{fox14 → fox16}/include/FXRbTabBar.h +1 -1
  270. data/ext/{fox14 → fox16}/include/FXRbTabBarVirtuals.h +0 -0
  271. data/ext/{fox14 → fox16}/include/FXRbTabBook.h +1 -1
  272. data/ext/{fox14 → fox16}/include/FXRbTabItem.h +1 -1
  273. data/ext/{fox14 → fox16}/include/FXRbTable.h +9 -3
  274. data/ext/{fox14 → fox16}/include/FXRbTableItemVirtuals.h +0 -0
  275. data/ext/{fox14 → fox16}/include/FXRbTableVirtuals.h +3 -0
  276. data/ext/fox16/include/FXRbText.h +187 -0
  277. data/ext/{fox14 → fox16}/include/FXRbTextField.h +1 -1
  278. data/ext/fox16/include/FXRbTextVirtuals.h +52 -0
  279. data/ext/{fox14 → fox16}/include/FXRbToggleButton.h +1 -1
  280. data/ext/{fox14 → fox16}/include/FXRbToolBar.h +1 -1
  281. data/ext/{fox14 → fox16}/include/FXRbToolBarGrip.h +1 -1
  282. data/ext/{fox14 → fox16}/include/FXRbToolBarShell.h +1 -1
  283. data/ext/{fox14 → fox16}/include/FXRbToolBarTab.h +1 -1
  284. data/ext/{fox14 → fox16}/include/FXRbToolTip.h +1 -1
  285. data/ext/{fox14 → fox16}/include/FXRbTopWindow.h +1 -1
  286. data/ext/{fox14 → fox16}/include/FXRbTopWindowVirtuals.h +0 -0
  287. data/ext/fox16/include/FXRbTranslator.h +61 -0
  288. data/ext/fox16/include/FXRbTranslatorVirtuals.h +4 -0
  289. data/ext/{fox14 → fox16}/include/FXRbTreeItemVirtuals.h +0 -0
  290. data/ext/{fox14 → fox16}/include/FXRbTreeList.h +1 -1
  291. data/ext/{fox14 → fox16}/include/FXRbTreeListBox.h +1 -1
  292. data/ext/{fox14 → fox16}/include/FXRbTreeListBoxVirtuals.h +0 -0
  293. data/ext/{fox14 → fox16}/include/FXRbTreeListVirtuals.h +0 -0
  294. data/ext/{fox14 → fox16}/include/FXRbTriStateButton.h +1 -1
  295. data/ext/{fox14 → fox16}/include/FXRbVerticalFrame.h +1 -1
  296. data/ext/{fox14 → fox16}/include/FXRbVisual.h +1 -1
  297. data/ext/{fox14 → fox16}/include/FXRbWindow.h +27 -9
  298. data/ext/{fox14 → fox16}/include/FXRbWindowVirtuals.h +13 -4
  299. data/ext/{fox14 → fox16}/include/FXRbWizard.h +1 -1
  300. data/ext/{fox14 → fox16}/include/FXRbXBMIcon.h +1 -1
  301. data/ext/{fox14 → fox16}/include/FXRbXBMImage.h +1 -1
  302. data/ext/{fox14 → fox16}/include/FXRbXPMIcon.h +1 -1
  303. data/ext/{fox14 → fox16}/include/FXRbXPMImage.h +1 -1
  304. data/ext/{fox14 → fox16}/include/FXRuby.h +43 -18
  305. data/ext/{fox14 → fox16}/include/impl.h +5 -0
  306. data/ext/{fox14 → fox16}/include/inlinestubs.h +29 -0
  307. data/ext/{fox14 → fox16}/label_wrap.cpp +319 -122
  308. data/ext/{fox14 → fox16}/layout_wrap.cpp +443 -153
  309. data/ext/{fox14 → fox16}/librb.c +0 -0
  310. data/ext/{fox14 → fox16}/list_wrap.cpp +660 -44
  311. data/ext/{fox14 → fox16}/markfuncs.cpp +38 -8
  312. data/ext/{fox14 → fox16}/mdi_wrap.cpp +253 -109
  313. data/ext/{fox14 → fox16}/menu_wrap.cpp +342 -146
  314. data/ext/{fox14 → fox16}/scintilla_wrap.cpp +58 -39
  315. data/ext/{fox14 → fox16}/table_wrap.cpp +294 -82
  316. data/ext/{fox14 → fox16}/text_wrap.cpp +203 -193
  317. data/ext/{fox14 → fox16}/treelist_wrap.cpp +125 -60
  318. data/ext/{fox14 → fox16}/ui_wrap.cpp +993 -714
  319. data/ext/{fox14 → fox16}/unregisterOwnedObjects.cpp +6 -1
  320. data/lib/{fox14 → fox16}/aliases.rb +119 -46
  321. data/lib/{fox14 → fox16}/calendar.rb +2 -2
  322. data/lib/{fox14 → fox16}/chore.rb +6 -22
  323. data/lib/{fox14 → fox16}/colors.rb +1 -1
  324. data/lib/{fox14 → fox16}/core.rb +122 -4
  325. data/lib/{fox14 → fox16}/dict.rb +0 -0
  326. data/lib/{fox14 → fox16}/execute_nonmodal.rb +0 -0
  327. data/lib/{fox14 → fox16}/glgroup.rb +4 -2
  328. data/lib/{fox14 → fox16}/glshapes.rb +1 -1
  329. data/lib/{fox14 → fox16}/input.rb +1 -1
  330. data/lib/{fox14 → fox16}/irb.rb +1 -1
  331. data/lib/{fox14 → fox16}/iterators.rb +1 -1
  332. data/lib/{fox14 → fox16}/keys.rb +2 -2
  333. data/lib/{fox14 → fox16}/missingdep.rb +1 -1
  334. data/lib/{fox14 → fox16}/pseudokeyboard.rb +1 -1
  335. data/lib/{fox14 → fox16}/pseudomouse.rb +1 -1
  336. data/lib/{fox14 → fox16}/responder.rb +1 -1
  337. data/lib/{fox14 → fox16}/responder2.rb +5 -5
  338. data/lib/{fox14 → fox16}/scintilla.rb +249 -12
  339. data/lib/{fox14 → fox16}/settings.rb +0 -0
  340. data/lib/{fox14 → fox16}/signal.rb +1 -1
  341. data/lib/{fox14 → fox16}/splashscreen.rb +2 -2
  342. data/lib/{fox14 → fox16}/timeout.rb +10 -37
  343. data/lib/{fox14 → fox16}/undolist.rb +2 -2
  344. data/lib/{fox14 → fox16}/version.rb +2 -2
  345. data/rdoc-sources/FX4Splitter.rb +24 -6
  346. data/rdoc-sources/FX7Segment.rb +6 -0
  347. data/rdoc-sources/FXAccelTable.rb +35 -0
  348. data/rdoc-sources/FXApp.rb +113 -1
  349. data/rdoc-sources/FXBMPIcon.rb +5 -0
  350. data/rdoc-sources/FXBMPImage.rb +5 -0
  351. data/rdoc-sources/FXBitmap.rb +23 -1
  352. data/rdoc-sources/FXCheckButton.rb +7 -0
  353. data/rdoc-sources/FXColorList.rb +55 -0
  354. data/rdoc-sources/FXColorRing.rb +49 -0
  355. data/rdoc-sources/FXColorWheel.rb +22 -2
  356. data/rdoc-sources/FXComboBox.rb +10 -0
  357. data/rdoc-sources/FXDC.rb +18 -0
  358. data/rdoc-sources/FXDial.rb +34 -1
  359. data/rdoc-sources/FXDirList.rb +1 -0
  360. data/rdoc-sources/FXDockBar.rb +21 -6
  361. data/rdoc-sources/FXDockHandler.rb +7 -0
  362. data/rdoc-sources/FXDockSite.rb +18 -0
  363. data/rdoc-sources/FXExtentd.rb +85 -0
  364. data/rdoc-sources/FXExtentf.rb +85 -0
  365. data/rdoc-sources/FXFileDialog.rb +11 -0
  366. data/rdoc-sources/FXFileDict.rb +7 -7
  367. data/rdoc-sources/FXFileList.rb +22 -0
  368. data/rdoc-sources/FXFileSelector.rb +10 -0
  369. data/rdoc-sources/FXFoldingList.rb +13 -2
  370. data/rdoc-sources/FXFont.rb +68 -62
  371. data/rdoc-sources/FXGIFIcon.rb +5 -0
  372. data/rdoc-sources/FXGIFImage.rb +5 -0
  373. data/rdoc-sources/FXGLViewer.rb +23 -0
  374. data/rdoc-sources/FXGradientBar.rb +10 -0
  375. data/rdoc-sources/FXHeader.rb +11 -0
  376. data/rdoc-sources/FXICOIcon.rb +5 -0
  377. data/rdoc-sources/FXICOImage.rb +5 -0
  378. data/rdoc-sources/FXIconList.rb +8 -0
  379. data/rdoc-sources/FXIconSource.rb +12 -12
  380. data/rdoc-sources/FXImage.rb +0 -4
  381. data/rdoc-sources/FXInputDialog.rb +19 -6
  382. data/rdoc-sources/FXJPGIcon.rb +5 -0
  383. data/rdoc-sources/FXJPGImage.rb +5 -0
  384. data/rdoc-sources/FXKnob.rb +76 -0
  385. data/rdoc-sources/FXList.rb +8 -0
  386. data/rdoc-sources/FXListBox.rb +7 -1
  387. data/rdoc-sources/FXMenuCaption.rb +3 -0
  388. data/rdoc-sources/FXMenuCheck.rb +2 -2
  389. data/rdoc-sources/FXMenuCommand.rb +1 -2
  390. data/rdoc-sources/FXMenuRadio.rb +5 -2
  391. data/rdoc-sources/FXOptionMenu.rb +7 -0
  392. data/rdoc-sources/FXPCXIcon.rb +5 -0
  393. data/rdoc-sources/FXPCXImage.rb +5 -0
  394. data/rdoc-sources/FXPNGIcon.rb +5 -0
  395. data/rdoc-sources/FXPNGImage.rb +5 -0
  396. data/rdoc-sources/FXPPMIcon.rb +5 -0
  397. data/rdoc-sources/FXPPMImage.rb +5 -0
  398. data/rdoc-sources/FXQuatd.rb +5 -12
  399. data/rdoc-sources/FXQuatf.rb +5 -7
  400. data/rdoc-sources/FXRGBIcon.rb +5 -0
  401. data/rdoc-sources/FXRGBImage.rb +5 -0
  402. data/rdoc-sources/FXRadioButton.rb +6 -0
  403. data/rdoc-sources/FXRanged.rb +3 -0
  404. data/rdoc-sources/FXRangef.rb +3 -0
  405. data/rdoc-sources/FXRealSlider.rb +3 -1
  406. data/rdoc-sources/FXRealSpinner.rb +11 -4
  407. data/rdoc-sources/FXRecentFiles.rb +10 -6
  408. data/rdoc-sources/FXRectangle.rb +12 -0
  409. data/rdoc-sources/FXRuler.rb +28 -0
  410. data/rdoc-sources/FXScrollBar.rb +9 -3
  411. data/rdoc-sources/FXScrollPane.rb +3 -0
  412. data/rdoc-sources/FXSettings.rb +26 -0
  413. data/rdoc-sources/FXSize.rb +65 -0
  414. data/rdoc-sources/FXSlider.rb +2 -0
  415. data/rdoc-sources/FXSphered.rb +12 -0
  416. data/rdoc-sources/FXSpheref.rb +12 -0
  417. data/rdoc-sources/FXSpinner.rb +8 -4
  418. data/rdoc-sources/FXTGAIcon.rb +5 -0
  419. data/rdoc-sources/FXTGAImage.rb +5 -0
  420. data/rdoc-sources/FXTIFIcon.rb +5 -0
  421. data/rdoc-sources/FXTIFImage.rb +5 -0
  422. data/rdoc-sources/FXTabBar.rb +5 -1
  423. data/rdoc-sources/FXTabBook.rb +3 -0
  424. data/rdoc-sources/FXTabItem.rb +7 -0
  425. data/rdoc-sources/FXTable.rb +96 -18
  426. data/rdoc-sources/FXText.rb +47 -12
  427. data/rdoc-sources/FXTextField.rb +6 -0
  428. data/rdoc-sources/FXToggleButton.rb +0 -1
  429. data/rdoc-sources/FXTopWindow.rb +44 -2
  430. data/rdoc-sources/FXTranslator.rb +32 -0
  431. data/rdoc-sources/FXTreeList.rb +8 -0
  432. data/rdoc-sources/FXTreeListBox.rb +20 -0
  433. data/rdoc-sources/{FXVec.rb → FXVec2d.rb} +28 -29
  434. data/rdoc-sources/FXVec2f.rb +96 -0
  435. data/rdoc-sources/FXVec3d.rb +113 -0
  436. data/rdoc-sources/FXVec3f.rb +113 -0
  437. data/rdoc-sources/FXVec4d.rb +129 -0
  438. data/rdoc-sources/FXVec4f.rb +129 -0
  439. data/rdoc-sources/FXWindow.rb +89 -14
  440. data/rdoc-sources/FXXBMIcon.rb +5 -0
  441. data/rdoc-sources/FXXBMImage.rb +5 -0
  442. data/rdoc-sources/FXXPMIcon.rb +5 -0
  443. data/rdoc-sources/FXXPMImage.rb +5 -0
  444. data/rdoc-sources/README.rdoc +1 -1
  445. data/tests/TC_FXAccelTable.rb +1 -1
  446. data/tests/TC_FXApp.rb +1 -1
  447. data/tests/TC_FXArc.rb +1 -1
  448. data/tests/TC_FXBMPIcon.rb +1 -1
  449. data/tests/TC_FXBMPImage.rb +1 -1
  450. data/tests/TC_FXButton.rb +1 -1
  451. data/tests/TC_FXCheckButton.rb +1 -1
  452. data/tests/TC_FXComboBox.rb +2 -1
  453. data/tests/TC_FXDC.rb +1 -1
  454. data/tests/TC_FXDCPrint.rb +1 -1
  455. data/tests/TC_FXDCWindow.rb +1 -1
  456. data/tests/TC_FXDataTarget.rb +1 -1
  457. data/tests/TC_FXDirList.rb +2 -2
  458. data/tests/TC_FXFileAssoc.rb +1 -1
  459. data/tests/TC_FXFileStream.rb +1 -1
  460. data/tests/TC_FXFont.rb +2 -2
  461. data/tests/TC_FXFontDesc.rb +15 -19
  462. data/tests/TC_FXGLGroup.rb +1 -1
  463. data/tests/TC_FXGLShape.rb +1 -1
  464. data/tests/TC_FXGLViewer.rb +1 -3
  465. data/tests/TC_FXGradientBar.rb +1 -1
  466. data/tests/TC_FXHeader.rb +2 -2
  467. data/tests/TC_FXIconDict.rb +1 -1
  468. data/tests/TC_FXIconList.rb +2 -2
  469. data/tests/TC_FXId.rb +2 -2
  470. data/tests/TC_FXImage.rb +1 -1
  471. data/tests/TC_FXLight.rb +1 -1
  472. data/tests/TC_FXList.rb +2 -12
  473. data/tests/TC_FXListBox.rb +2 -2
  474. data/tests/TC_FXMat4f.rb +1 -1
  475. data/tests/TC_FXMaterial.rb +2 -2
  476. data/tests/TC_FXMemoryStream.rb +1 -1
  477. data/tests/TC_FXMenuCheck.rb +1 -1
  478. data/tests/TC_FXMenuCommand.rb +15 -1
  479. data/tests/TC_FXMenuRadio.rb +1 -1
  480. data/tests/TC_FXPoint.rb +1 -1
  481. data/tests/TC_FXQuatf.rb +1 -1
  482. data/tests/TC_FXRadioButton.rb +1 -1
  483. data/tests/TC_FXRangef.rb +1 -1
  484. data/tests/TC_FXRectangle.rb +1 -1
  485. data/tests/TC_FXRegion.rb +1 -1
  486. data/tests/TC_FXRegistry.rb +1 -1
  487. data/tests/TC_FXScrollArea.rb +1 -1
  488. data/tests/TC_FXScrollWindow.rb +1 -1
  489. data/tests/TC_FXSegment.rb +1 -1
  490. data/tests/TC_FXSettings.rb +1 -1
  491. data/tests/TC_FXShell.rb +1 -1
  492. data/tests/TC_FXSize.rb +1 -1
  493. data/tests/TC_FXStream.rb +1 -1
  494. data/tests/TC_FXTable.rb +33 -1
  495. data/tests/TC_FXTableItem.rb +2 -2
  496. data/tests/TC_FXText.rb +2 -2
  497. data/tests/TC_FXTopWindow.rb +1 -1
  498. data/tests/TC_FXTreeList.rb +2 -2
  499. data/tests/TC_FXTreeListBox.rb +2 -2
  500. data/tests/TC_FXUndoList.rb +2 -2
  501. data/tests/TC_FXVec2d.rb +6 -6
  502. data/tests/TC_FXVec2f.rb +5 -5
  503. data/tests/TC_FXVec3d.rb +5 -5
  504. data/tests/TC_FXVec3f.rb +5 -5
  505. data/tests/TC_FXVec4f.rb +3 -3
  506. data/tests/TC_FXViewport.rb +1 -1
  507. data/tests/TC_FXXBMIcon.rb +1 -1
  508. data/tests/TC_FXXBMImage.rb +1 -1
  509. data/tests/TC_FXXPMIcon.rb +1 -1
  510. data/tests/TC_FXXPMImage.rb +1 -1
  511. data/tests/TC_Misc.rb +1 -1
  512. data/tests/TC_downcast.rb +1 -1
  513. data/tests/TS_All.rb +1 -2
  514. data/tests/stress1.rb +5 -5
  515. data/tests/stress2.rb +1 -1
  516. data/tests/stress3.rb +1 -1
  517. data/tests/testcase.rb +1 -1
  518. metadata +294 -280
  519. data/doc/changes.html +0 -433
  520. data/ext/fox14/include/FXRbFont.h +0 -70
  521. data/ext/fox14/include/FXRbIconSource.h +0 -127
  522. data/ext/fox14/include/FXRbIconSourceVirtuals.h +0 -37
  523. data/ext/fox14/include/FXRbRealSpinnerVirtuals.h +0 -3
  524. data/ext/fox14/include/FXRbText.h +0 -94
  525. data/ext/fox14/include/FXRbTextVirtuals.h +0 -9
  526. data/rdoc-sources/FXMat4.rb +0 -171
  527. data/rdoc-sources/FXVec4.rb +0 -91
File without changes
File without changes
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  begin
3
3
  require 'opengl'
4
4
  rescue LoadError
@@ -10,7 +10,7 @@ module Fox
10
10
  # A group of OpenGL objects
11
11
  #
12
12
  class FXGLGroup < FXGLObject
13
-
13
+
14
14
  include Enumerable
15
15
 
16
16
  FLT_MAX = 1.0e+20
@@ -155,6 +155,8 @@ module Fox
155
155
  end
156
156
  end
157
157
 
158
+ alias erase remove
159
+
158
160
  #
159
161
  # Remove all children from this group.
160
162
  #
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
  require 'opengl'
3
3
 
4
4
  module Fox
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
 
3
3
  module Fox
4
4
  class FXApp
@@ -12,7 +12,7 @@
12
12
  # - readonly everywhere but for the command line
13
13
  # - readline
14
14
 
15
- require "fox14"
15
+ require "fox16"
16
16
  require "irb"
17
17
  require "singleton"
18
18
  require "fcntl"
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
 
3
3
  module Fox
4
4
  class FXComboBox
@@ -1,8 +1,8 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
 
3
3
  module Fox
4
4
  # Void symbol
5
- KEY_VoidSymbol = 0xFFFFFF
5
+ KEY_VoidSymbol = 0
6
6
 
7
7
  # Miscellaneous
8
8
  KEY_BackSpace = 0xFF08
@@ -3,7 +3,7 @@
3
3
  # Windows distribution since people will often start the examples by double-
4
4
  # clicking on an icon instead of running from the command line.
5
5
 
6
- require 'fox14'
6
+ require 'fox16'
7
7
 
8
8
  def missingDependency(msg)
9
9
  app = Fox::FXApp.new("Dummy", "FoxTest")
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
 
3
3
  module Fox
4
4
  #
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
 
3
3
  module Fox
4
4
  #
@@ -1,4 +1,4 @@
1
- require 'fox14'
1
+ require 'fox16'
2
2
 
3
3
  # Enumeration
4
4
  def enum(start, count)
@@ -1,4 +1,4 @@
1
- require 'fox14/responder'
1
+ require 'fox16/responder'
2
2
 
3
3
  module Fox
4
4
 
@@ -116,7 +116,7 @@ module Fox
116
116
  end
117
117
  end
118
118
 
119
- require 'fox14/timeout'
120
- require 'fox14/chore'
121
- require 'fox14/signal'
122
- require 'fox14/input'
119
+ require 'fox16/timeout'
120
+ require 'fox16/chore'
121
+ require 'fox16/signal'
122
+ require 'fox16/input'
@@ -275,6 +275,7 @@ module Fox
275
275
  SC_MARK_DOTDOTDOT = 23
276
276
  SC_MARK_ARROWS = 24
277
277
  SC_MARK_PIXMAP = 25
278
+ SC_MARK_FULLRECT = 26
278
279
 
279
280
  SC_MARK_CHARACTER = 10000
280
281
 
@@ -339,6 +340,11 @@ module Fox
339
340
  sendMessage(2049, markerNumber, pixmap)
340
341
  end
341
342
 
343
+ # Add a set of markers to a line.
344
+ def markerAddSet(line, set)
345
+ sendMessage(2466, line, set)
346
+ end
347
+
342
348
  SC_MARGIN_SYMBOL = 0
343
349
  SC_MARGIN_NUMBER = 1
344
350
 
@@ -406,6 +412,7 @@ module Fox
406
412
  SC_CHARSET_MAC = 77
407
413
  SC_CHARSET_OEM = 255
408
414
  SC_CHARSET_RUSSIAN = 204
415
+ SC_CHARSET_CYRILLIC = 1251
409
416
  SC_CHARSET_SHIFTJIS = 128
410
417
  SC_CHARSET_SYMBOL = 2
411
418
  SC_CHARSET_TURKISH = 162
@@ -414,6 +421,7 @@ module Fox
414
421
  SC_CHARSET_ARABIC = 178
415
422
  SC_CHARSET_VIETNAMESE = 163
416
423
  SC_CHARSET_THAI = 222
424
+ SC_CHARSET_8859_15 = 1000
417
425
 
418
426
  # Clear all the styles and make equivalent to the global default style.
419
427
  def styleClearAll
@@ -1500,7 +1508,7 @@ module Fox
1500
1508
  # Retrieve whether the maximum scroll position has the last
1501
1509
  # line at the bottom of the view.
1502
1510
  def getEndAtLastLine
1503
- sendMessage(2278, 0, 0)
1511
+ sendMessage(2278, 0, 0) == 1 ? true : false
1504
1512
  end
1505
1513
 
1506
1514
  # Retrieve the height of a particular line of text in pixels.
@@ -2340,7 +2348,7 @@ module Fox
2340
2348
  end
2341
2349
 
2342
2350
  # Set the length of the utf8 argument for calling EncodedFromUTF8.
2343
- # Set to 0 and the string will be measured to the first nul.
2351
+ # Set to -1 and the string will be measured to the first nul.
2344
2352
  def setLengthForEncode(bytes)
2345
2353
  sendMessage(2448, bytes, 0)
2346
2354
  end
@@ -2375,6 +2383,21 @@ module Fox
2375
2383
  sendMessage(2459, 0, 0)
2376
2384
  end
2377
2385
 
2386
+ # Enable/Disable convert-on-paste for line endings
2387
+ def setPasteConvertEndings(convert)
2388
+ sendMessage(2467, convert, 0)
2389
+ end
2390
+
2391
+ # Get convert-on-paste setting
2392
+ def getPasteConvertEndings
2393
+ sendMessage(2468, 0, 0) == 1 ? true : false
2394
+ end
2395
+
2396
+ # Duplicate the selection. If selection empty duplicate the line containing the caret.
2397
+ def selectionDuplicate
2398
+ sendMessage(2469, 0, 0)
2399
+ end
2400
+
2378
2401
  # Start notifying the container of all key presses and commands.
2379
2402
  def startRecord
2380
2403
  sendMessage(3001, 0, 0)
@@ -2423,6 +2446,32 @@ module Fox
2423
2446
  sendMessage(4007, 0, path)
2424
2447
  end
2425
2448
 
2449
+ # Retrieve a "property" value previously set with SetProperty.
2450
+ def getProperty(key)
2451
+ buffer = "".ljust(key)
2452
+ sendMessage(4008, key, buffer)
2453
+ buffer
2454
+ end
2455
+
2456
+ # Retrieve a "property" value previously set with SetProperty,
2457
+ # with "$()" variable replacement on returned buffer.
2458
+ def getPropertyExpanded(key)
2459
+ buffer = "".ljust(key)
2460
+ sendMessage(4009, key, buffer)
2461
+ buffer
2462
+ end
2463
+
2464
+ # Retrieve a "property" value previously set with SetProperty,
2465
+ # interpreted as an int AFTER any "$()" variable replacement.
2466
+ def getPropertyInt(key)
2467
+ sendMessage(4010, key, 0)
2468
+ end
2469
+
2470
+ # Retrieve the number of bits the current lexer needs for styling.
2471
+ def getStyleBitsNeeded
2472
+ sendMessage(4011, 0, 0)
2473
+ end
2474
+
2426
2475
  # Notifications
2427
2476
  # Type of modification and the action which caused the modification.
2428
2477
  # These are defined as a bit mask to make it easy to specify which notifications are wanted.
@@ -2434,11 +2483,13 @@ module Fox
2434
2483
  SC_PERFORMED_USER = 0x10
2435
2484
  SC_PERFORMED_UNDO = 0x20
2436
2485
  SC_PERFORMED_REDO = 0x40
2486
+ SC_MULTISTEPUNDOREDO = 0x80
2437
2487
  SC_LASTSTEPINUNDOREDO = 0x100
2438
2488
  SC_MOD_CHANGEMARKER = 0x200
2439
2489
  SC_MOD_BEFOREINSERT = 0x400
2440
2490
  SC_MOD_BEFOREDELETE = 0x800
2441
- SC_MODEVENTMASKALL = 0xF77
2491
+ SC_MULTILINEUNDOREDO = 0x1000
2492
+ SC_MODEVENTMASKALL = 0x1FFF
2442
2493
 
2443
2494
  # For compatibility, these go through the COMMAND notification rather than NOTIFY
2444
2495
  # and should have had exactly the same values as the EN_* constants.
@@ -2470,6 +2521,7 @@ module Fox
2470
2521
  SCK_SUBTRACT = 311
2471
2522
  SCK_DIVIDE = 312
2472
2523
 
2524
+ SCMOD_NORM = 0
2473
2525
  SCMOD_SHIFT = 1
2474
2526
  SCMOD_CTRL = 2
2475
2527
  SCMOD_ALT = 4
@@ -2543,6 +2595,12 @@ module Fox
2543
2595
  SCLEX_PUREBASIC = 67
2544
2596
  SCLEX_HASKELL = 68
2545
2597
  SCLEX_PHPSCRIPT = 69
2598
+ SCLEX_TADS3 = 70
2599
+ SCLEX_REBOL = 71
2600
+ SCLEX_SMALLTALK = 72
2601
+ SCLEX_FLAGSHIP = 73
2602
+ SCLEX_CSOUND = 74
2603
+ SCLEX_FREEBASIC = 75
2546
2604
 
2547
2605
  # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a
2548
2606
  # value assigned in sequence from SCLEX_AUTOMATIC+1.
@@ -2562,6 +2620,8 @@ module Fox
2562
2620
  SCE_P_IDENTIFIER = 11
2563
2621
  SCE_P_COMMENTBLOCK = 12
2564
2622
  SCE_P_STRINGEOL = 13
2623
+ SCE_P_WORD2 = 14
2624
+ SCE_P_DECORATOR = 15
2565
2625
  # Lexical states for SCLEX_CPP
2566
2626
  SCE_C_DEFAULT = 0
2567
2627
  SCE_C_COMMENT = 1
@@ -2724,6 +2784,7 @@ module Fox
2724
2784
  SCE_PL_ARRAY = 13
2725
2785
  SCE_PL_HASH = 14
2726
2786
  SCE_PL_SYMBOLTABLE = 15
2787
+ SCE_PL_VARIABLE_INDEXER = 16
2727
2788
  SCE_PL_REGEX = 17
2728
2789
  SCE_PL_REGSUBST = 18
2729
2790
  SCE_PL_LONGQUOTE = 19
@@ -2738,6 +2799,42 @@ module Fox
2738
2799
  SCE_PL_STRING_QX = 28
2739
2800
  SCE_PL_STRING_QR = 29
2740
2801
  SCE_PL_STRING_QW = 30
2802
+ SCE_PL_POD_VERB = 31
2803
+ # Lexical states for SCLEX_RUBY
2804
+ SCE_RB_DEFAULT = 0
2805
+ SCE_RB_ERROR = 1
2806
+ SCE_RB_COMMENTLINE = 2
2807
+ SCE_RB_POD = 3
2808
+ SCE_RB_NUMBER = 4
2809
+ SCE_RB_WORD = 5
2810
+ SCE_RB_STRING = 6
2811
+ SCE_RB_CHARACTER = 7
2812
+ SCE_RB_CLASSNAME = 8
2813
+ SCE_RB_DEFNAME = 9
2814
+ SCE_RB_OPERATOR = 10
2815
+ SCE_RB_IDENTIFIER = 11
2816
+ SCE_RB_REGEX = 12
2817
+ SCE_RB_GLOBAL = 13
2818
+ SCE_RB_SYMBOL = 14
2819
+ SCE_RB_MODULE_NAME = 15
2820
+ SCE_RB_INSTANCE_VAR = 16
2821
+ SCE_RB_CLASS_VAR = 17
2822
+ SCE_RB_BACKTICKS = 18
2823
+ SCE_RB_DATASECTION = 19
2824
+ SCE_RB_HERE_DELIM = 20
2825
+ SCE_RB_HERE_Q = 21
2826
+ SCE_RB_HERE_QQ = 22
2827
+ SCE_RB_HERE_QX = 23
2828
+ SCE_RB_STRING_Q = 24
2829
+ SCE_RB_STRING_QQ = 25
2830
+ SCE_RB_STRING_QX = 26
2831
+ SCE_RB_STRING_QR = 27
2832
+ SCE_RB_STRING_QW = 28
2833
+ SCE_RB_WORD_DEMOTED = 29
2834
+ SCE_RB_STDIN = 30
2835
+ SCE_RB_STDOUT = 31
2836
+ SCE_RB_STDERR = 40
2837
+ SCE_RB_UPPER_BOUND = 41
2741
2838
  # Lexical states for SCLEX_VB, SCLEX_VBSCRIPT, SCLEX_POWERBASIC
2742
2839
  SCE_B_DEFAULT = 0
2743
2840
  SCE_B_COMMENT = 1
@@ -2895,10 +2992,14 @@ module Fox
2895
2992
  SCE_LISP_COMMENT = 1
2896
2993
  SCE_LISP_NUMBER = 2
2897
2994
  SCE_LISP_KEYWORD = 3
2995
+ SCE_LISP_KEYWORD_KW = 4
2996
+ SCE_LISP_SYMBOL = 5
2898
2997
  SCE_LISP_STRING = 6
2899
2998
  SCE_LISP_STRINGEOL = 8
2900
2999
  SCE_LISP_IDENTIFIER = 9
2901
3000
  SCE_LISP_OPERATOR = 10
3001
+ SCE_LISP_SPECIAL = 11
3002
+ SCE_LISP_MULTI_COMMENT = 12
2902
3003
  # Lexical states for SCLEX_EIFFEL and SCLEX_EIFFELKW
2903
3004
  SCE_EIFFEL_DEFAULT = 0
2904
3005
  SCE_EIFFEL_COMMENTLINE = 1
@@ -3266,6 +3367,7 @@ module Fox
3266
3367
  SCE_AU3_PREPROCESSOR = 11
3267
3368
  SCE_AU3_SPECIAL = 12
3268
3369
  SCE_AU3_EXPAND = 13
3370
+ SCE_AU3_COMOBJ = 14
3269
3371
  # Lexical states for SCLEX_APDL
3270
3372
  SCE_APDL_DEFAULT = 0
3271
3373
  SCE_APDL_COMMENT = 1
@@ -3329,15 +3431,16 @@ module Fox
3329
3431
  SCE_CAML_TAGNAME = 2
3330
3432
  SCE_CAML_KEYWORD = 3
3331
3433
  SCE_CAML_KEYWORD2 = 4
3332
- SCE_CAML_LINENUM = 5
3333
- SCE_CAML_OPERATOR = 6
3334
- SCE_CAML_NUMBER = 7
3335
- SCE_CAML_CHAR = 8
3336
- SCE_CAML_STRING = 9
3337
- SCE_CAML_COMMENT = 10
3338
- SCE_CAML_COMMENT1 = 11
3339
- SCE_CAML_COMMENT2 = 12
3340
- SCE_CAML_COMMENT3 = 13
3434
+ SCE_CAML_KEYWORD3 = 5
3435
+ SCE_CAML_LINENUM = 6
3436
+ SCE_CAML_OPERATOR = 7
3437
+ SCE_CAML_NUMBER = 8
3438
+ SCE_CAML_CHAR = 9
3439
+ SCE_CAML_STRING = 11
3440
+ SCE_CAML_COMMENT = 12
3441
+ SCE_CAML_COMMENT1 = 13
3442
+ SCE_CAML_COMMENT2 = 14
3443
+ SCE_CAML_COMMENT3 = 15
3341
3444
  # Lexical states for SCLEX_HASKELL
3342
3445
  SCE_HA_DEFAULT = 0
3343
3446
  SCE_HA_IDENTIFIER = 1
@@ -3356,6 +3459,140 @@ module Fox
3356
3459
  SCE_HA_COMMENTBLOCK = 14
3357
3460
  SCE_HA_COMMENTBLOCK2 = 15
3358
3461
  SCE_HA_COMMENTBLOCK3 = 16
3462
+ # Lexical states of SCLEX_TADS3
3463
+ SCE_T3_DEFAULT = 0
3464
+ SCE_T3_X_DEFAULT = 1
3465
+ SCE_T3_PREPROCESSOR = 2
3466
+ SCE_T3_BLOCK_COMMENT = 3
3467
+ SCE_T3_LINE_COMMENT = 4
3468
+ SCE_T3_OPERATOR = 5
3469
+ SCE_T3_KEYWORD = 6
3470
+ SCE_T3_NUMBER = 7
3471
+ SCE_T3_IDENTIFIER = 8
3472
+ SCE_T3_S_STRING = 9
3473
+ SCE_T3_D_STRING = 10
3474
+ SCE_T3_X_STRING = 11
3475
+ SCE_T3_LIB_DIRECTIVE = 12
3476
+ SCE_T3_MSG_PARAM = 13
3477
+ SCE_T3_HTML_TAG = 14
3478
+ SCE_T3_HTML_DEFAULT = 15
3479
+ SCE_T3_HTML_STRING = 16
3480
+ SCE_T3_USER1 = 17
3481
+ SCE_T3_USER2 = 18
3482
+ SCE_T3_USER3 = 19
3483
+ # Lexical states for SCLEX_REBOL
3484
+ SCE_REBOL_DEFAULT = 0
3485
+ SCE_REBOL_COMMENTLINE = 1
3486
+ SCE_REBOL_COMMENTBLOCK = 2
3487
+ SCE_REBOL_PREFACE = 3
3488
+ SCE_REBOL_OPERATOR = 4
3489
+ SCE_REBOL_CHARACTER = 5
3490
+ SCE_REBOL_QUOTEDSTRING = 6
3491
+ SCE_REBOL_BRACEDSTRING = 7
3492
+ SCE_REBOL_NUMBER = 8
3493
+ SCE_REBOL_PAIR = 9
3494
+ SCE_REBOL_TUPLE = 10
3495
+ SCE_REBOL_BINARY = 11
3496
+ SCE_REBOL_MONEY = 12
3497
+ SCE_REBOL_ISSUE = 13
3498
+ SCE_REBOL_TAG = 14
3499
+ SCE_REBOL_FILE = 15
3500
+ SCE_REBOL_EMAIL = 16
3501
+ SCE_REBOL_URL = 17
3502
+ SCE_REBOL_DATE = 18
3503
+ SCE_REBOL_TIME = 19
3504
+ SCE_REBOL_IDENTIFIER = 20
3505
+ SCE_REBOL_WORD = 21
3506
+ SCE_REBOL_WORD2 = 22
3507
+ SCE_REBOL_WORD3 = 23
3508
+ SCE_REBOL_WORD4 = 24
3509
+ SCE_REBOL_WORD5 = 25
3510
+ SCE_REBOL_WORD6 = 26
3511
+ SCE_REBOL_WORD7 = 27
3512
+ SCE_REBOL_WORD8 = 28
3513
+ # Lexical states for SCLEX_SQL
3514
+ SCE_SQL_DEFAULT = 0
3515
+ SCE_SQL_COMMENT = 1
3516
+ SCE_SQL_COMMENTLINE = 2
3517
+ SCE_SQL_COMMENTDOC = 3
3518
+ SCE_SQL_NUMBER = 4
3519
+ SCE_SQL_WORD = 5
3520
+ SCE_SQL_STRING = 6
3521
+ SCE_SQL_CHARACTER = 7
3522
+ SCE_SQL_SQLPLUS = 8
3523
+ SCE_SQL_SQLPLUS_PROMPT = 9
3524
+ SCE_SQL_OPERATOR = 10
3525
+ SCE_SQL_IDENTIFIER = 11
3526
+ SCE_SQL_SQLPLUS_COMMENT = 13
3527
+ SCE_SQL_COMMENTLINEDOC = 15
3528
+ SCE_SQL_WORD2 = 16
3529
+ SCE_SQL_COMMENTDOCKEYWORD = 17
3530
+ SCE_SQL_COMMENTDOCKEYWORDERROR = 18
3531
+ SCE_SQL_USER1 = 19
3532
+ SCE_SQL_USER2 = 20
3533
+ SCE_SQL_USER3 = 21
3534
+ SCE_SQL_USER4 = 22
3535
+ SCE_SQL_QUOTEDIDENTIFIER = 23
3536
+ # Lexical states for SCLEX_SMALLTALK
3537
+ SCE_ST_DEFAULT = 0
3538
+ SCE_ST_STRING = 1
3539
+ SCE_ST_NUMBER = 2
3540
+ SCE_ST_COMMENT = 3
3541
+ SCE_ST_SYMBOL = 4
3542
+ SCE_ST_BINARY = 5
3543
+ SCE_ST_BOOL = 6
3544
+ SCE_ST_SELF = 7
3545
+ SCE_ST_SUPER = 8
3546
+ SCE_ST_NIL = 9
3547
+ SCE_ST_GLOBAL = 10
3548
+ SCE_ST_RETURN = 11
3549
+ SCE_ST_SPECIAL = 12
3550
+ SCE_ST_KWSEND = 13
3551
+ SCE_ST_ASSIGN = 14
3552
+ SCE_ST_CHARACTER = 15
3553
+ SCE_ST_SPEC_SEL = 16
3554
+ # Lexical states for SCLEX_FLAGSHIP (clipper)
3555
+ SCE_FS_DEFAULT = 0
3556
+ SCE_FS_COMMENT = 1
3557
+ SCE_FS_COMMENTLINE = 2
3558
+ SCE_FS_COMMENTDOC = 3
3559
+ SCE_FS_COMMENTLINEDOC = 4
3560
+ SCE_FS_COMMENTDOCKEYWORD = 5
3561
+ SCE_FS_COMMENTDOCKEYWORDERROR = 6
3562
+ SCE_FS_KEYWORD = 7
3563
+ SCE_FS_KEYWORD2 = 8
3564
+ SCE_FS_KEYWORD3 = 9
3565
+ SCE_FS_KEYWORD4 = 10
3566
+ SCE_FS_NUMBER = 11
3567
+ SCE_FS_STRING = 12
3568
+ SCE_FS_PREPROCESSOR = 13
3569
+ SCE_FS_OPERATOR = 14
3570
+ SCE_FS_IDENTIFIER = 15
3571
+ SCE_FS_DATE = 16
3572
+ SCE_FS_STRINGEOL = 17
3573
+ SCE_FS_CONSTANT = 18
3574
+ SCE_FS_ASM = 19
3575
+ SCE_FS_LABEL = 20
3576
+ SCE_FS_ERROR = 21
3577
+ SCE_FS_HEXNUMBER = 22
3578
+ SCE_FS_BINNUMBER = 23
3579
+ # Lexical states for SCLEX_CSOUND
3580
+ SCE_CSOUND_DEFAULT = 0
3581
+ SCE_CSOUND_COMMENT = 1
3582
+ SCE_CSOUND_NUMBER = 2
3583
+ SCE_CSOUND_OPERATOR = 3
3584
+ SCE_CSOUND_INSTR = 4
3585
+ SCE_CSOUND_IDENTIFIER = 5
3586
+ SCE_CSOUND_OPCODE = 6
3587
+ SCE_CSOUND_HEADERSTMT = 7
3588
+ SCE_CSOUND_USERKEYWORD = 8
3589
+ SCE_CSOUND_COMMENTBLOCK = 9
3590
+ SCE_CSOUND_PARAM = 10
3591
+ SCE_CSOUND_ARATE_VAR = 11
3592
+ SCE_CSOUND_KRATE_VAR = 12
3593
+ SCE_CSOUND_IRATE_VAR = 13
3594
+ SCE_CSOUND_GLOBAL_VAR = 14
3595
+ SCE_CSOUND_STRINGEOL = 15
3359
3596
 
3360
3597
  # Events
3361
3598