qtbindings 4.6.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1130) hide show
  1. data/CHANGELOG.txt +9 -0
  2. data/CMakeLists.txt +22 -0
  3. data/COPYING.LIB.txt +510 -0
  4. data/COPYING.txt +286 -0
  5. data/KNOWN_ISSUES.txt +20 -0
  6. data/README.txt +92 -0
  7. data/Rakefile +96 -0
  8. data/TODO.txt +2 -0
  9. data/bin/rbqtapi +152 -0
  10. data/bin/rbrcc +18 -0
  11. data/bin/rbuic4 +18 -0
  12. data/bin/smokeapi +18 -0
  13. data/bin/smokedeptool +18 -0
  14. data/examples/base/kicons.rb +54 -0
  15. data/examples/base/rui.rb +21 -0
  16. data/examples/designer/calculatorbuilder/calculatorbuilder.qrc +5 -0
  17. data/examples/designer/calculatorbuilder/calculatorform.rb +60 -0
  18. data/examples/designer/calculatorbuilder/calculatorform.ui +299 -0
  19. data/examples/designer/calculatorbuilder/main.rb +34 -0
  20. data/examples/designer/calculatorbuilder/makefile +2 -0
  21. data/examples/designer/calculatorform/calculatorform.rb +46 -0
  22. data/examples/designer/calculatorform/calculatorform.ui +277 -0
  23. data/examples/designer/calculatorform/main.rb +32 -0
  24. data/examples/designer/calculatorform/makefile +3 -0
  25. data/examples/desktop/screenshot/main.rb +32 -0
  26. data/examples/desktop/screenshot/screenshot.rb +156 -0
  27. data/examples/desktop/systray/images/bad.svg +64 -0
  28. data/examples/desktop/systray/images/heart.svg +55 -0
  29. data/examples/desktop/systray/images/trash.svg +58 -0
  30. data/examples/desktop/systray/main.rb +41 -0
  31. data/examples/desktop/systray/makefile +2 -0
  32. data/examples/desktop/systray/systray.qrc +7 -0
  33. data/examples/desktop/systray/window.rb +223 -0
  34. data/examples/dialogs/complexwizard/complexwizard.rb +140 -0
  35. data/examples/dialogs/complexwizard/licensewizard.rb +294 -0
  36. data/examples/dialogs/complexwizard/main.rb +31 -0
  37. data/examples/dialogs/configdialog/configdialog.rb +109 -0
  38. data/examples/dialogs/configdialog/images/config.png +0 -0
  39. data/examples/dialogs/configdialog/images/query.png +0 -0
  40. data/examples/dialogs/configdialog/images/update.png +0 -0
  41. data/examples/dialogs/configdialog/main.rb +31 -0
  42. data/examples/dialogs/configdialog/pages.rb +140 -0
  43. data/examples/dialogs/extension/finddialog.rb +89 -0
  44. data/examples/dialogs/extension/main.rb +31 -0
  45. data/examples/dialogs/findfiles/main.rb +32 -0
  46. data/examples/dialogs/findfiles/window.rb +177 -0
  47. data/examples/dialogs/simplewizard/classwizard.rb +374 -0
  48. data/examples/dialogs/simplewizard/main.rb +31 -0
  49. data/examples/dialogs/simplewizard/simplewizard.rb +110 -0
  50. data/examples/dialogs/standarddialogs/dialog.rb +340 -0
  51. data/examples/dialogs/standarddialogs/main.rb +31 -0
  52. data/examples/dialogs/tabdialog/main.rb +38 -0
  53. data/examples/dialogs/tabdialog/tabdialog.rb +178 -0
  54. data/examples/draganddrop/draggableicons/dragwidget.rb +125 -0
  55. data/examples/draganddrop/draggableicons/images/boat.png +0 -0
  56. data/examples/draganddrop/draggableicons/images/car.png +0 -0
  57. data/examples/draganddrop/draggableicons/images/house.png +0 -0
  58. data/examples/draganddrop/draggableicons/main.rb +41 -0
  59. data/examples/draganddrop/draggabletext/draglabel.rb +51 -0
  60. data/examples/draganddrop/draggabletext/dragwidget.rb +94 -0
  61. data/examples/draganddrop/draggabletext/main.rb +33 -0
  62. data/examples/draganddrop/draggabletext/words.txt +41 -0
  63. data/examples/draganddrop/dropsite/dropsitewidget.rb +98 -0
  64. data/examples/draganddrop/dropsite/dropsitewindow.rb +114 -0
  65. data/examples/draganddrop/dropsite/main.rb +33 -0
  66. data/examples/draganddrop/fridgemagnets/draglabel.rb +78 -0
  67. data/examples/draganddrop/fridgemagnets/dragwidget.rb +130 -0
  68. data/examples/draganddrop/fridgemagnets/main.rb +33 -0
  69. data/examples/draganddrop/fridgemagnets/words.txt +48 -0
  70. data/examples/draganddrop/puzzle/example.jpg +0 -0
  71. data/examples/draganddrop/puzzle/main.rb +33 -0
  72. data/examples/draganddrop/puzzle/mainwindow.rb +136 -0
  73. data/examples/draganddrop/puzzle/pieceslist.rb +95 -0
  74. data/examples/draganddrop/puzzle/puzzlewidget.rb +190 -0
  75. data/examples/graphicsview/collidingmice/images/cheese.jpg +0 -0
  76. data/examples/graphicsview/collidingmice/main.rb +53 -0
  77. data/examples/graphicsview/collidingmice/makefile +2 -0
  78. data/examples/graphicsview/collidingmice/mice.qrc +5 -0
  79. data/examples/graphicsview/collidingmice/mouse.rb +176 -0
  80. data/examples/graphicsview/dragdroprobot/coloritem.rb +86 -0
  81. data/examples/graphicsview/dragdroprobot/images/head.png +0 -0
  82. data/examples/graphicsview/dragdroprobot/main.rb +57 -0
  83. data/examples/graphicsview/dragdroprobot/makefile +2 -0
  84. data/examples/graphicsview/dragdroprobot/robot.qrc +5 -0
  85. data/examples/graphicsview/dragdroprobot/robot.rb +246 -0
  86. data/examples/itemviews/chart/chart.qrc +5 -0
  87. data/examples/itemviews/chart/main.rb +33 -0
  88. data/examples/itemviews/chart/mainwindow.rb +151 -0
  89. data/examples/itemviews/chart/makefile +2 -0
  90. data/examples/itemviews/chart/mydata.cht +8 -0
  91. data/examples/itemviews/chart/pieview.rb +516 -0
  92. data/examples/itemviews/chart/qtdata.cht +14 -0
  93. data/examples/itemviews/dirview/main.rb +39 -0
  94. data/examples/itemviews/pixelator/imagemodel.rb +51 -0
  95. data/examples/itemviews/pixelator/images.qrc +5 -0
  96. data/examples/itemviews/pixelator/images/qt.png +0 -0
  97. data/examples/itemviews/pixelator/main.rb +34 -0
  98. data/examples/itemviews/pixelator/mainwindow.rb +218 -0
  99. data/examples/itemviews/pixelator/makefile +3 -0
  100. data/examples/itemviews/pixelator/pixeldelegate.rb +67 -0
  101. data/examples/itemviews/puzzle/example.jpg +0 -0
  102. data/examples/itemviews/puzzle/main.rb +36 -0
  103. data/examples/itemviews/puzzle/mainwindow.rb +143 -0
  104. data/examples/itemviews/puzzle/piecesmodel.rb +174 -0
  105. data/examples/itemviews/puzzle/puzzlewidget.rb +192 -0
  106. data/examples/itemviews/simpledommodel/domitem.rb +62 -0
  107. data/examples/itemviews/simpledommodel/dommodel.rb +139 -0
  108. data/examples/itemviews/simpledommodel/main.rb +33 -0
  109. data/examples/itemviews/simpledommodel/mainwindow.rb +66 -0
  110. data/examples/itemviews/simpletreemodel/default.txt +40 -0
  111. data/examples/itemviews/simpletreemodel/main.rb +41 -0
  112. data/examples/itemviews/simpletreemodel/makefile +2 -0
  113. data/examples/itemviews/simpletreemodel/simpletreemodel.qrc +5 -0
  114. data/examples/itemviews/simpletreemodel/treeitem.rb +67 -0
  115. data/examples/itemviews/simpletreemodel/treemodel.rb +164 -0
  116. data/examples/itemviews/sortingmodel/default.txt +40 -0
  117. data/examples/itemviews/sortingmodel/main.rb +53 -0
  118. data/examples/itemviews/sortingmodel/treeitem.rb +73 -0
  119. data/examples/itemviews/sortingmodel/treemodel.rb +166 -0
  120. data/examples/itemviews/spinboxdelegate/main.rb +47 -0
  121. data/examples/itemviews/spinboxdelegate/spinboxdelegate.rb +62 -0
  122. data/examples/killerfilter/killerfilter.rb +55 -0
  123. data/examples/layouts/basiclayouts/dialog.rb +110 -0
  124. data/examples/layouts/basiclayouts/main.rb +31 -0
  125. data/examples/layouts/borderlayout/borderlayout.rb +190 -0
  126. data/examples/layouts/borderlayout/main.rb +32 -0
  127. data/examples/layouts/borderlayout/window.rb +52 -0
  128. data/examples/layouts/flowlayouts/flowlayout.rb +108 -0
  129. data/examples/layouts/flowlayouts/main.rb +32 -0
  130. data/examples/layouts/flowlayouts/window.rb +43 -0
  131. data/examples/mainwindows/application/images/copy.png +0 -0
  132. data/examples/mainwindows/application/images/cut.png +0 -0
  133. data/examples/mainwindows/application/images/new.png +0 -0
  134. data/examples/mainwindows/application/images/open.png +0 -0
  135. data/examples/mainwindows/application/images/paste.png +0 -0
  136. data/examples/mainwindows/application/images/save.png +0 -0
  137. data/examples/mainwindows/application/main.rb +32 -0
  138. data/examples/mainwindows/application/mainwindow.rb +285 -0
  139. data/examples/mainwindows/dockwidgets/images/new.png +0 -0
  140. data/examples/mainwindows/dockwidgets/images/print.png +0 -0
  141. data/examples/mainwindows/dockwidgets/images/save.png +0 -0
  142. data/examples/mainwindows/dockwidgets/images/undo.png +0 -0
  143. data/examples/mainwindows/dockwidgets/main.rb +32 -0
  144. data/examples/mainwindows/dockwidgets/mainwindow.rb +302 -0
  145. data/examples/mainwindows/mdi/images/copy.png +0 -0
  146. data/examples/mainwindows/mdi/images/cut.png +0 -0
  147. data/examples/mainwindows/mdi/images/new.png +0 -0
  148. data/examples/mainwindows/mdi/images/open.png +0 -0
  149. data/examples/mainwindows/mdi/images/paste.png +0 -0
  150. data/examples/mainwindows/mdi/images/save.png +0 -0
  151. data/examples/mainwindows/mdi/main.rb +32 -0
  152. data/examples/mainwindows/mdi/mainwindow.rb +363 -0
  153. data/examples/mainwindows/mdi/mdichild.rb +152 -0
  154. data/examples/mainwindows/menus/main.rb +32 -0
  155. data/examples/mainwindows/menus/mainwindow.rb +327 -0
  156. data/examples/mainwindows/recentfiles/main.rb +32 -0
  157. data/examples/mainwindows/recentfiles/mainwindow.rb +258 -0
  158. data/examples/mainwindows/sdi/images/copy.png +0 -0
  159. data/examples/mainwindows/sdi/images/cut.png +0 -0
  160. data/examples/mainwindows/sdi/images/new.png +0 -0
  161. data/examples/mainwindows/sdi/images/open.png +0 -0
  162. data/examples/mainwindows/sdi/images/paste.png +0 -0
  163. data/examples/mainwindows/sdi/images/save.png +0 -0
  164. data/examples/mainwindows/sdi/main.rb +32 -0
  165. data/examples/mainwindows/sdi/mainwindow.rb +335 -0
  166. data/examples/network/broadcastreceiver/main.rb +32 -0
  167. data/examples/network/broadcastreceiver/receiver.rb +64 -0
  168. data/examples/network/broadcastsender/main.rb +32 -0
  169. data/examples/network/broadcastsender/sender.rb +70 -0
  170. data/examples/network/fortuneclient/client.rb +150 -0
  171. data/examples/network/fortuneclient/main.rb +32 -0
  172. data/examples/network/fortuneserver/main.rb +32 -0
  173. data/examples/network/fortuneserver/server.rb +88 -0
  174. data/examples/network/ftp/ftpwindow.rb +254 -0
  175. data/examples/network/ftp/images/cdtoparent.png +0 -0
  176. data/examples/network/ftp/images/dir.png +0 -0
  177. data/examples/network/ftp/images/file.png +0 -0
  178. data/examples/network/ftp/main.rb +32 -0
  179. data/examples/network/http/httpwindow.rb +187 -0
  180. data/examples/network/http/main.rb +32 -0
  181. data/examples/network/loopback/dialog.rb +163 -0
  182. data/examples/network/loopback/main.rb +32 -0
  183. data/examples/opengl/grabber/glwidget.rb +265 -0
  184. data/examples/opengl/grabber/main.rb +32 -0
  185. data/examples/opengl/grabber/mainwindow.rb +189 -0
  186. data/examples/opengl/hellogl/glwidget.rb +226 -0
  187. data/examples/opengl/hellogl/main.rb +32 -0
  188. data/examples/opengl/hellogl/window.rb +66 -0
  189. data/examples/opengl/textures/glwidget.rb +151 -0
  190. data/examples/opengl/textures/images/side1.png +0 -0
  191. data/examples/opengl/textures/images/side2.png +0 -0
  192. data/examples/opengl/textures/images/side3.png +0 -0
  193. data/examples/opengl/textures/images/side4.png +0 -0
  194. data/examples/opengl/textures/images/side5.png +0 -0
  195. data/examples/opengl/textures/images/side6.png +0 -0
  196. data/examples/opengl/textures/main.rb +32 -0
  197. data/examples/opengl/textures/window.rb +77 -0
  198. data/examples/painting/basicdrawing/images/brick.png +0 -0
  199. data/examples/painting/basicdrawing/images/qt-logo.png +0 -0
  200. data/examples/painting/basicdrawing/main.rb +32 -0
  201. data/examples/painting/basicdrawing/renderarea.rb +166 -0
  202. data/examples/painting/basicdrawing/window.rb +215 -0
  203. data/examples/painting/concentriccircles/circlewidget.rb +88 -0
  204. data/examples/painting/concentriccircles/main.rb +32 -0
  205. data/examples/painting/concentriccircles/window.rb +72 -0
  206. data/examples/painting/fontsampler/main.rb +32 -0
  207. data/examples/painting/fontsampler/mainwindow.rb +368 -0
  208. data/examples/painting/fontsampler/mainwindowbase.ui +136 -0
  209. data/examples/painting/fontsampler/makefile +8 -0
  210. data/examples/painting/fontsampler/previewdialog.rb +256 -0
  211. data/examples/painting/fontsampler/previewdialogbase.ui +224 -0
  212. data/examples/painting/fontsampler/previewlabel.rb +43 -0
  213. data/examples/painting/imagecomposition/imagecomposer.rb +152 -0
  214. data/examples/painting/imagecomposition/imagecomposition.qrc +6 -0
  215. data/examples/painting/imagecomposition/images/background.png +0 -0
  216. data/examples/painting/imagecomposition/images/blackrectangle.png +0 -0
  217. data/examples/painting/imagecomposition/images/butterfly.png +0 -0
  218. data/examples/painting/imagecomposition/images/checker.png +0 -0
  219. data/examples/painting/imagecomposition/main.rb +33 -0
  220. data/examples/painting/imagecomposition/makefile +2 -0
  221. data/examples/painting/painterpaths/main.rb +32 -0
  222. data/examples/painting/painterpaths/renderarea.rb +97 -0
  223. data/examples/painting/painterpaths/window.rb +247 -0
  224. data/examples/painting/svgviewer/files/bubbles.svg +212 -0
  225. data/examples/painting/svgviewer/files/cubic.svg +77 -0
  226. data/examples/painting/svgviewer/files/spheres.svg +79 -0
  227. data/examples/painting/svgviewer/main.rb +38 -0
  228. data/examples/painting/svgviewer/mainwindow.rb +99 -0
  229. data/examples/painting/svgviewer/makefile +2 -0
  230. data/examples/painting/svgviewer/svgview.rb +156 -0
  231. data/examples/painting/svgviewer/svgviewer.qrc +6 -0
  232. data/examples/painting/svgviewer/svgwindow.rb +87 -0
  233. data/examples/painting/transformations/main.rb +32 -0
  234. data/examples/painting/transformations/renderarea.rb +127 -0
  235. data/examples/painting/transformations/window.rb +153 -0
  236. data/examples/passivepopup/passivepopup.rb +38 -0
  237. data/examples/qdbus/chat/chat.rb +146 -0
  238. data/examples/qdbus/chat/chat_adaptor.rb +12 -0
  239. data/examples/qdbus/chat/chat_interface.rb +13 -0
  240. data/examples/qdbus/chat/chatmainwindow.ui +184 -0
  241. data/examples/qdbus/chat/chatsetnickname.ui +145 -0
  242. data/examples/qdbus/chat/makefile +8 -0
  243. data/examples/qdbus/complexpingpong/complexping.rb +92 -0
  244. data/examples/qdbus/complexpingpong/complexpong.rb +83 -0
  245. data/examples/qdbus/complexpingpong/ping-common.rb +1 -0
  246. data/examples/qdbus/listnames/listnames.rb +69 -0
  247. data/examples/qdbus/pingpong/ping-common.rb +1 -0
  248. data/examples/qdbus/pingpong/ping.rb +52 -0
  249. data/examples/qdbus/pingpong/pong.rb +55 -0
  250. data/examples/qdbus/remotecontrolledcar/car/car.rb +151 -0
  251. data/examples/qdbus/remotecontrolledcar/car/main.rb +50 -0
  252. data/examples/qdbus/remotecontrolledcar/controller/controller.rb +66 -0
  253. data/examples/qdbus/remotecontrolledcar/controller/controller.ui +61 -0
  254. data/examples/qdbus/remotecontrolledcar/controller/main.rb +32 -0
  255. data/examples/qdbus/remotecontrolledcar/controller/makefile +2 -0
  256. data/examples/qtscribble/scribble.rb +270 -0
  257. data/examples/richtext/calendar/main.rb +33 -0
  258. data/examples/richtext/calendar/mainwindow.rb +173 -0
  259. data/examples/richtext/orderform/detailsdialog.rb +130 -0
  260. data/examples/richtext/orderform/main.rb +34 -0
  261. data/examples/richtext/orderform/mainwindow.rb +194 -0
  262. data/examples/richtext/syntaxhighlighter/examples/example +79 -0
  263. data/examples/richtext/syntaxhighlighter/highlighter.rb +90 -0
  264. data/examples/richtext/syntaxhighlighter/main.rb +34 -0
  265. data/examples/richtext/syntaxhighlighter/mainwindow.rb +105 -0
  266. data/examples/ruboids/Manifest +26 -0
  267. data/examples/ruboids/README +53 -0
  268. data/examples/ruboids/TODO +29 -0
  269. data/examples/ruboids/boids.properties +33 -0
  270. data/examples/ruboids/generateManifest.rb +42 -0
  271. data/examples/ruboids/index.html +147 -0
  272. data/examples/ruboids/release.rb +152 -0
  273. data/examples/ruboids/ruboids/Boid.rb +141 -0
  274. data/examples/ruboids/ruboids/BoidView.rb +159 -0
  275. data/examples/ruboids/ruboids/Camera.rb +24 -0
  276. data/examples/ruboids/ruboids/CameraDialog.rb +218 -0
  277. data/examples/ruboids/ruboids/Canvas.rb +143 -0
  278. data/examples/ruboids/ruboids/Cloud.rb +61 -0
  279. data/examples/ruboids/ruboids/CloudView.rb +54 -0
  280. data/examples/ruboids/ruboids/Flock.rb +47 -0
  281. data/examples/ruboids/ruboids/Graphics.rb +278 -0
  282. data/examples/ruboids/ruboids/Params.rb +87 -0
  283. data/examples/ruboids/ruboids/Point.rb +153 -0
  284. data/examples/ruboids/ruboids/Thing.rb +34 -0
  285. data/examples/ruboids/ruboids/Triangle.rb +21 -0
  286. data/examples/ruboids/ruboids/View.rb +88 -0
  287. data/examples/ruboids/ruboids/World.rb +82 -0
  288. data/examples/ruboids/ruboids/WorldWindow.rb +52 -0
  289. data/examples/ruboids/ruboids/info.rb +12 -0
  290. data/examples/ruboids/ruboids/ruboids.rb +29 -0
  291. data/examples/run_all.rb +14 -0
  292. data/examples/textedit/textedit.rb +150 -0
  293. data/examples/tutorial/t1/t1.rb +10 -0
  294. data/examples/tutorial/t10/cannon.rb +72 -0
  295. data/examples/tutorial/t10/lcdrange.rb +45 -0
  296. data/examples/tutorial/t10/t10.rb +55 -0
  297. data/examples/tutorial/t11/cannon.rb +124 -0
  298. data/examples/tutorial/t11/lcdrange.rb +45 -0
  299. data/examples/tutorial/t11/t11.rb +65 -0
  300. data/examples/tutorial/t12/cannon.rb +158 -0
  301. data/examples/tutorial/t12/lcdrange.rb +59 -0
  302. data/examples/tutorial/t12/t12.rb +66 -0
  303. data/examples/tutorial/t13/cannon.rb +208 -0
  304. data/examples/tutorial/t13/gamebrd.rb +113 -0
  305. data/examples/tutorial/t13/lcdrange.rb +60 -0
  306. data/examples/tutorial/t13/t13.rb +11 -0
  307. data/examples/tutorial/t14/cannon.rb +263 -0
  308. data/examples/tutorial/t14/gamebrd.rb +123 -0
  309. data/examples/tutorial/t14/lcdrange.rb +63 -0
  310. data/examples/tutorial/t14/t14.rb +11 -0
  311. data/examples/tutorial/t2/t2.rb +16 -0
  312. data/examples/tutorial/t3/t3.rb +18 -0
  313. data/examples/tutorial/t4/t4.rb +25 -0
  314. data/examples/tutorial/t5/t5.rb +37 -0
  315. data/examples/tutorial/t6/t6.rb +52 -0
  316. data/examples/tutorial/t7/lcdrange.rb +32 -0
  317. data/examples/tutorial/t7/t7.rb +42 -0
  318. data/examples/tutorial/t8/cannon.rb +38 -0
  319. data/examples/tutorial/t8/lcdrange.rb +45 -0
  320. data/examples/tutorial/t8/t8.rb +43 -0
  321. data/examples/tutorial/t9/cannon.rb +45 -0
  322. data/examples/tutorial/t9/lcdrange.rb +46 -0
  323. data/examples/tutorial/t9/t9.rb +43 -0
  324. data/examples/widgets/analogclock/analogclock.rb +94 -0
  325. data/examples/widgets/analogclock/main.rb +9 -0
  326. data/examples/widgets/calculator/button.rb +45 -0
  327. data/examples/widgets/calculator/calculator.rb +382 -0
  328. data/examples/widgets/calculator/main.rb +32 -0
  329. data/examples/widgets/charactermap/characterwidget.rb +110 -0
  330. data/examples/widgets/charactermap/main.rb +32 -0
  331. data/examples/widgets/charactermap/mainwindow.rb +118 -0
  332. data/examples/widgets/digitalclock/digitalclock.rb +30 -0
  333. data/examples/widgets/digitalclock/main.rb +9 -0
  334. data/examples/widgets/groupbox/main.rb +32 -0
  335. data/examples/widgets/groupbox/window.rb +134 -0
  336. data/examples/widgets/icons/iconpreviewarea.rb +111 -0
  337. data/examples/widgets/icons/iconsizespinbox.rb +39 -0
  338. data/examples/widgets/icons/imagedelegate.rb +73 -0
  339. data/examples/widgets/icons/images/designer.png +0 -0
  340. data/examples/widgets/icons/images/find_disabled.png +0 -0
  341. data/examples/widgets/icons/images/find_normal.png +0 -0
  342. data/examples/widgets/icons/images/monkey_off_128x128.png +0 -0
  343. data/examples/widgets/icons/images/monkey_off_16x16.png +0 -0
  344. data/examples/widgets/icons/images/monkey_off_32x32.png +0 -0
  345. data/examples/widgets/icons/images/monkey_off_64x64.png +0 -0
  346. data/examples/widgets/icons/images/monkey_on_128x128.png +0 -0
  347. data/examples/widgets/icons/images/monkey_on_16x16.png +0 -0
  348. data/examples/widgets/icons/images/monkey_on_32x32.png +0 -0
  349. data/examples/widgets/icons/images/monkey_on_64x64.png +0 -0
  350. data/examples/widgets/icons/images/qtopia_16x16.png +0 -0
  351. data/examples/widgets/icons/images/qtopia_32x32.png +0 -0
  352. data/examples/widgets/icons/images/qtopia_48x48.png +0 -0
  353. data/examples/widgets/icons/main.rb +32 -0
  354. data/examples/widgets/icons/mainwindow.rb +351 -0
  355. data/examples/widgets/imageviewer/imageviewer.rb +219 -0
  356. data/examples/widgets/imageviewer/main.rb +32 -0
  357. data/examples/widgets/lineedits/main.rb +32 -0
  358. data/examples/widgets/lineedits/window.rb +199 -0
  359. data/examples/widgets/movie/images/open.png +0 -0
  360. data/examples/widgets/movie/images/pause.png +0 -0
  361. data/examples/widgets/movie/images/play.png +0 -0
  362. data/examples/widgets/movie/images/quit.png +0 -0
  363. data/examples/widgets/movie/images/stop.png +0 -0
  364. data/examples/widgets/movie/main.rb +32 -0
  365. data/examples/widgets/movie/movieplayer.rb +201 -0
  366. data/examples/widgets/movie/movies/fire.mng +0 -0
  367. data/examples/widgets/screenshot/main.rb +32 -0
  368. data/examples/widgets/screenshot/screenshot.rb +155 -0
  369. data/examples/widgets/scribble/main.rb +32 -0
  370. data/examples/widgets/scribble/mainwindow.rb +202 -0
  371. data/examples/widgets/scribble/scribblearea.rb +154 -0
  372. data/examples/widgets/sliders/main.rb +32 -0
  373. data/examples/widgets/sliders/slidersgroup.rb +97 -0
  374. data/examples/widgets/sliders/window.rb +124 -0
  375. data/examples/widgets/spinboxes/main.rb +32 -0
  376. data/examples/widgets/spinboxes/window.rb +213 -0
  377. data/examples/widgets/tetrix/main.rb +33 -0
  378. data/examples/widgets/tetrix/tetrixboard.rb +346 -0
  379. data/examples/widgets/tetrix/tetrixpiece.rb +135 -0
  380. data/examples/widgets/tetrix/tetrixwindow.rb +88 -0
  381. data/examples/widgets/tooltips/images/circle.png +0 -0
  382. data/examples/widgets/tooltips/images/square.png +0 -0
  383. data/examples/widgets/tooltips/images/triangle.png +0 -0
  384. data/examples/widgets/tooltips/main.rb +32 -0
  385. data/examples/widgets/tooltips/shapeitem.rb +31 -0
  386. data/examples/widgets/tooltips/sortingbox.rb +222 -0
  387. data/examples/widgets/wiggly/dialog.rb +48 -0
  388. data/examples/widgets/wiggly/main.rb +9 -0
  389. data/examples/widgets/wiggly/wigglywidget.rb +76 -0
  390. data/examples/widgets/windowflags/controllerwindow.rb +195 -0
  391. data/examples/widgets/windowflags/main.rb +32 -0
  392. data/examples/widgets/windowflags/previewwindow.rb +103 -0
  393. data/examples/xml/dombookmarks/frank.xbel +230 -0
  394. data/examples/xml/dombookmarks/jennifer.xbel +93 -0
  395. data/examples/xml/dombookmarks/main.rb +34 -0
  396. data/examples/xml/dombookmarks/mainwindow.rb +129 -0
  397. data/examples/xml/dombookmarks/xbeltree.rb +172 -0
  398. data/examples/xml/saxbookmarks/frank.xbel +230 -0
  399. data/examples/xml/saxbookmarks/jennifer.xbel +93 -0
  400. data/examples/xml/saxbookmarks/main.rb +34 -0
  401. data/examples/xml/saxbookmarks/mainwindow.rb +144 -0
  402. data/examples/xml/saxbookmarks/xbelgenerator.rb +95 -0
  403. data/examples/xml/saxbookmarks/xbelhandler.rb +122 -0
  404. data/ext/CMakeLists.txt +22 -0
  405. data/ext/cmake/modules/CMakeCSharpCompiler.cmake.in +7 -0
  406. data/ext/cmake/modules/CMakeCSharpInformation.cmake +366 -0
  407. data/ext/cmake/modules/CMakeDetermineCSharpCompiler.cmake +85 -0
  408. data/ext/cmake/modules/CMakeTestCSharpCompiler.cmake +1 -0
  409. data/ext/cmake/modules/CheckCXXSourceCompiles.cmake +68 -0
  410. data/ext/cmake/modules/FindMono.cmake +36 -0
  411. data/ext/cmake/modules/FindPHP5.cmake +179 -0
  412. data/ext/cmake/modules/FindPerlMore.cmake +78 -0
  413. data/ext/cmake/modules/FindQScintilla.cmake +57 -0
  414. data/ext/cmake/modules/FindQt4.cmake +1271 -0
  415. data/ext/cmake/modules/FindQwt5.cmake +104 -0
  416. data/ext/cmake/modules/FindRuby.cmake +261 -0
  417. data/ext/cmake/modules/FindSmoke.cmake +78 -0
  418. data/ext/cmake/modules/HandleImportedTargetsInCMakeRequiredLibraries.cmake +85 -0
  419. data/ext/cmake/modules/MacroLogFeature.cmake +146 -0
  420. data/ext/cmake/modules/MacroOptionalAddBindings.cmake +47 -0
  421. data/ext/cmake/modules/MacroOptionalFindPackage.cmake +48 -0
  422. data/ext/cmake/modules/MacroPushRequiredVars.cmake +47 -0
  423. data/ext/cmake/modules/Qt4ConfigDependentSettings.cmake +384 -0
  424. data/ext/cmake/modules/Qt4Macros.cmake +414 -0
  425. data/ext/generator/CMakeLists.txt +38 -0
  426. data/ext/generator/generator_export.h +31 -0
  427. data/ext/generator/generatorenvironment.cpp +52 -0
  428. data/ext/generator/generatorenvironment.h +35 -0
  429. data/ext/generator/generatorpreprocessor.cpp +242 -0
  430. data/ext/generator/generatorpreprocessor.h +83 -0
  431. data/ext/generator/generators/CMakeLists.txt +4 -0
  432. data/ext/generator/generators/dump/CMakeLists.txt +10 -0
  433. data/ext/generator/generators/dump/generator_dump.cpp +36 -0
  434. data/ext/generator/generators/smoke/CMakeLists.txt +13 -0
  435. data/ext/generator/generators/smoke/generator_smoke.cpp +233 -0
  436. data/ext/generator/generators/smoke/globals.h +138 -0
  437. data/ext/generator/generators/smoke/helpers.cpp +773 -0
  438. data/ext/generator/generators/smoke/writeClasses.cpp +502 -0
  439. data/ext/generator/generators/smoke/writeSmokeDataFile.cpp +729 -0
  440. data/ext/generator/generatorvisitor.cpp +922 -0
  441. data/ext/generator/generatorvisitor.h +119 -0
  442. data/ext/generator/main.cpp +239 -0
  443. data/ext/generator/name_compiler.cpp +205 -0
  444. data/ext/generator/name_compiler.h +76 -0
  445. data/ext/generator/options.cpp +32 -0
  446. data/ext/generator/options.h +45 -0
  447. data/ext/generator/parser/CMakeLists.txt +41 -0
  448. data/ext/generator/parser/ast.cpp +21 -0
  449. data/ext/generator/parser/ast.h +923 -0
  450. data/ext/generator/parser/astutilities.h +65 -0
  451. data/ext/generator/parser/codegenerator.cpp +867 -0
  452. data/ext/generator/parser/codegenerator.h +180 -0
  453. data/ext/generator/parser/codemodel_fwd.h +76 -0
  454. data/ext/generator/parser/commentformatter.cpp +54 -0
  455. data/ext/generator/parser/commentformatter.h +45 -0
  456. data/ext/generator/parser/commentparser.cpp +109 -0
  457. data/ext/generator/parser/commentparser.h +84 -0
  458. data/ext/generator/parser/control.cpp +40 -0
  459. data/ext/generator/parser/control.h +51 -0
  460. data/ext/generator/parser/cppparser_export.h +33 -0
  461. data/ext/generator/parser/default_visitor.cpp +470 -0
  462. data/ext/generator/parser/default_visitor.h +116 -0
  463. data/ext/generator/parser/dumptree.cpp +146 -0
  464. data/ext/generator/parser/dumptree.h +50 -0
  465. data/ext/generator/parser/indexedstring.cpp +213 -0
  466. data/ext/generator/parser/indexedstring.h +147 -0
  467. data/ext/generator/parser/kdevelop-parser-rev +1 -0
  468. data/ext/generator/parser/kdevvarlengtharray.h +346 -0
  469. data/ext/generator/parser/lexer.cpp +963 -0
  470. data/ext/generator/parser/lexer.h +308 -0
  471. data/ext/generator/parser/listnode.cpp +20 -0
  472. data/ext/generator/parser/listnode.h +97 -0
  473. data/ext/generator/parser/memorypool.cpp +20 -0
  474. data/ext/generator/parser/memorypool.h +41 -0
  475. data/ext/generator/parser/name_compiler.cpp +190 -0
  476. data/ext/generator/parser/name_compiler.h +77 -0
  477. data/ext/generator/parser/parser.cpp +4706 -0
  478. data/ext/generator/parser/parser.h +300 -0
  479. data/ext/generator/parser/parsesession.cpp +105 -0
  480. data/ext/generator/parser/parsesession.h +87 -0
  481. data/ext/generator/parser/problem.h +21 -0
  482. data/ext/generator/parser/rpp/CMakeLists.txt +39 -0
  483. data/ext/generator/parser/rpp/Makefile.am +13 -0
  484. data/ext/generator/parser/rpp/anchor.h +51 -0
  485. data/ext/generator/parser/rpp/appendedlist.h +363 -0
  486. data/ext/generator/parser/rpp/chartools.cpp +126 -0
  487. data/ext/generator/parser/rpp/chartools.h +90 -0
  488. data/ext/generator/parser/rpp/macrorepository.cpp +44 -0
  489. data/ext/generator/parser/rpp/macrorepository.h +59 -0
  490. data/ext/generator/parser/rpp/pp-configuration +86 -0
  491. data/ext/generator/parser/rpp/pp-engine.cpp +1216 -0
  492. data/ext/generator/parser/rpp/pp-engine.h +267 -0
  493. data/ext/generator/parser/rpp/pp-environment.cpp +271 -0
  494. data/ext/generator/parser/rpp/pp-environment.h +119 -0
  495. data/ext/generator/parser/rpp/pp-internal.cpp +38 -0
  496. data/ext/generator/parser/rpp/pp-internal.h +37 -0
  497. data/ext/generator/parser/rpp/pp-location.cpp +191 -0
  498. data/ext/generator/parser/rpp/pp-location.h +89 -0
  499. data/ext/generator/parser/rpp/pp-macro-expander.cpp +568 -0
  500. data/ext/generator/parser/rpp/pp-macro-expander.cpp.orig +558 -0
  501. data/ext/generator/parser/rpp/pp-macro-expander.h +130 -0
  502. data/ext/generator/parser/rpp/pp-macro.cpp +153 -0
  503. data/ext/generator/parser/rpp/pp-macro.h +176 -0
  504. data/ext/generator/parser/rpp/pp-scanner.cpp +310 -0
  505. data/ext/generator/parser/rpp/pp-scanner.h +97 -0
  506. data/ext/generator/parser/rpp/pp-stream.cpp +425 -0
  507. data/ext/generator/parser/rpp/pp-stream.h +183 -0
  508. data/ext/generator/parser/rpp/preprocessor.cpp +65 -0
  509. data/ext/generator/parser/rpp/preprocessor.h +80 -0
  510. data/ext/generator/parser/rpp/rpp.pri +2 -0
  511. data/ext/generator/parser/rpp/test/t001.cpp +23 -0
  512. data/ext/generator/parser/rpp/test/t002.cpp +15 -0
  513. data/ext/generator/parser/rpp/test/t003.cpp +10 -0
  514. data/ext/generator/parser/rpp/test/t004.cpp +9 -0
  515. data/ext/generator/parser/rpp/test/t005.cpp +10 -0
  516. data/ext/generator/parser/rpp/test/t006.cpp +10 -0
  517. data/ext/generator/parser/rpp/test/t007.cpp +6 -0
  518. data/ext/generator/parser/rpp/test/t008.cpp +6 -0
  519. data/ext/generator/parser/rpp/test/t009.cpp +5 -0
  520. data/ext/generator/parser/rpp/test/t010.cpp +15 -0
  521. data/ext/generator/parser/rpp/test/t011.cpp +9 -0
  522. data/ext/generator/parser/rpp/tests/CMakeLists.txt +13 -0
  523. data/ext/generator/parser/rpp/tests/main.cpp +69 -0
  524. data/ext/generator/parser/rxx.pri +50 -0
  525. data/ext/generator/parser/rxx_allocator.h +128 -0
  526. data/ext/generator/parser/safetycounter.h +57 -0
  527. data/ext/generator/parser/simplecursor.h +74 -0
  528. data/ext/generator/parser/stringhelpers.cpp +577 -0
  529. data/ext/generator/parser/stringhelpers.h +118 -0
  530. data/ext/generator/parser/symbol.h +140 -0
  531. data/ext/generator/parser/tests/CMakeLists.txt +30 -0
  532. data/ext/generator/parser/tests/test_generator.cpp +259 -0
  533. data/ext/generator/parser/tests/test_parser.cpp +474 -0
  534. data/ext/generator/parser/tests/test_pool.cpp +109 -0
  535. data/ext/generator/parser/tests/test_pool.h +35 -0
  536. data/ext/generator/parser/tests/testconfig.h.cmake +4 -0
  537. data/ext/generator/parser/tokens.cpp +364 -0
  538. data/ext/generator/parser/tokens.h +147 -0
  539. data/ext/generator/parser/type_compiler.cpp +135 -0
  540. data/ext/generator/parser/type_compiler.h +68 -0
  541. data/ext/generator/parser/visitor.cpp +115 -0
  542. data/ext/generator/parser/visitor.h +138 -0
  543. data/ext/generator/type.cpp +195 -0
  544. data/ext/generator/type.h +497 -0
  545. data/ext/generator/type_compiler.cpp +275 -0
  546. data/ext/generator/type_compiler.h +80 -0
  547. data/ext/ruby/CMakeLists.txt +63 -0
  548. data/ext/ruby/qtruby/AUTHORS +54 -0
  549. data/ext/ruby/qtruby/CMakeLists.txt +4 -0
  550. data/ext/ruby/qtruby/COPYING +355 -0
  551. data/ext/ruby/qtruby/COPYING.LIB +510 -0
  552. data/ext/ruby/qtruby/ChangeLog +3732 -0
  553. data/ext/ruby/qtruby/INSTALL +79 -0
  554. data/ext/ruby/qtruby/README +264 -0
  555. data/ext/ruby/qtruby/TODO +8 -0
  556. data/ext/ruby/qtruby/bin/CMakeLists.txt +1 -0
  557. data/ext/ruby/qtruby/bin/rbqtapi +152 -0
  558. data/ext/ruby/qtruby/examples/base/kicons.rb +54 -0
  559. data/ext/ruby/qtruby/examples/base/rui.rb +21 -0
  560. data/ext/ruby/qtruby/examples/designer/calculatorbuilder/calculatorbuilder.qrc +5 -0
  561. data/ext/ruby/qtruby/examples/designer/calculatorbuilder/calculatorform.rb +60 -0
  562. data/ext/ruby/qtruby/examples/designer/calculatorbuilder/calculatorform.ui +299 -0
  563. data/ext/ruby/qtruby/examples/designer/calculatorbuilder/main.rb +33 -0
  564. data/ext/ruby/qtruby/examples/designer/calculatorbuilder/makefile +2 -0
  565. data/ext/ruby/qtruby/examples/designer/calculatorform/calculatorform.rb +46 -0
  566. data/ext/ruby/qtruby/examples/designer/calculatorform/calculatorform.ui +277 -0
  567. data/ext/ruby/qtruby/examples/designer/calculatorform/main.rb +32 -0
  568. data/ext/ruby/qtruby/examples/designer/calculatorform/makefile +3 -0
  569. data/ext/ruby/qtruby/examples/desktop/screenshot/main.rb +32 -0
  570. data/ext/ruby/qtruby/examples/desktop/screenshot/screenshot.rb +156 -0
  571. data/ext/ruby/qtruby/examples/desktop/systray/images/bad.svg +64 -0
  572. data/ext/ruby/qtruby/examples/desktop/systray/images/heart.svg +55 -0
  573. data/ext/ruby/qtruby/examples/desktop/systray/images/trash.svg +58 -0
  574. data/ext/ruby/qtruby/examples/desktop/systray/main.rb +41 -0
  575. data/ext/ruby/qtruby/examples/desktop/systray/makefile +2 -0
  576. data/ext/ruby/qtruby/examples/desktop/systray/systray.qrc +7 -0
  577. data/ext/ruby/qtruby/examples/desktop/systray/window.rb +223 -0
  578. data/ext/ruby/qtruby/examples/dialogs/complexwizard/complexwizard.rb +140 -0
  579. data/ext/ruby/qtruby/examples/dialogs/complexwizard/licensewizard.rb +294 -0
  580. data/ext/ruby/qtruby/examples/dialogs/complexwizard/main.rb +31 -0
  581. data/ext/ruby/qtruby/examples/dialogs/configdialog/configdialog.rb +109 -0
  582. data/ext/ruby/qtruby/examples/dialogs/configdialog/images/config.png +0 -0
  583. data/ext/ruby/qtruby/examples/dialogs/configdialog/images/query.png +0 -0
  584. data/ext/ruby/qtruby/examples/dialogs/configdialog/images/update.png +0 -0
  585. data/ext/ruby/qtruby/examples/dialogs/configdialog/main.rb +31 -0
  586. data/ext/ruby/qtruby/examples/dialogs/configdialog/pages.rb +140 -0
  587. data/ext/ruby/qtruby/examples/dialogs/extension/finddialog.rb +89 -0
  588. data/ext/ruby/qtruby/examples/dialogs/extension/main.rb +31 -0
  589. data/ext/ruby/qtruby/examples/dialogs/findfiles/main.rb +32 -0
  590. data/ext/ruby/qtruby/examples/dialogs/findfiles/window.rb +177 -0
  591. data/ext/ruby/qtruby/examples/dialogs/simplewizard/classwizard.rb +374 -0
  592. data/ext/ruby/qtruby/examples/dialogs/simplewizard/main.rb +31 -0
  593. data/ext/ruby/qtruby/examples/dialogs/simplewizard/simplewizard.rb +110 -0
  594. data/ext/ruby/qtruby/examples/dialogs/standarddialogs/dialog.rb +340 -0
  595. data/ext/ruby/qtruby/examples/dialogs/standarddialogs/main.rb +31 -0
  596. data/ext/ruby/qtruby/examples/dialogs/tabdialog/main.rb +38 -0
  597. data/ext/ruby/qtruby/examples/dialogs/tabdialog/tabdialog.rb +178 -0
  598. data/ext/ruby/qtruby/examples/draganddrop/draggableicons/dragwidget.rb +125 -0
  599. data/ext/ruby/qtruby/examples/draganddrop/draggableicons/images/boat.png +0 -0
  600. data/ext/ruby/qtruby/examples/draganddrop/draggableicons/images/car.png +0 -0
  601. data/ext/ruby/qtruby/examples/draganddrop/draggableicons/images/house.png +0 -0
  602. data/ext/ruby/qtruby/examples/draganddrop/draggableicons/main.rb +41 -0
  603. data/ext/ruby/qtruby/examples/draganddrop/draggabletext/draglabel.rb +51 -0
  604. data/ext/ruby/qtruby/examples/draganddrop/draggabletext/dragwidget.rb +94 -0
  605. data/ext/ruby/qtruby/examples/draganddrop/draggabletext/main.rb +33 -0
  606. data/ext/ruby/qtruby/examples/draganddrop/draggabletext/words.txt +41 -0
  607. data/ext/ruby/qtruby/examples/draganddrop/dropsite/dropsitewidget.rb +98 -0
  608. data/ext/ruby/qtruby/examples/draganddrop/dropsite/dropsitewindow.rb +114 -0
  609. data/ext/ruby/qtruby/examples/draganddrop/dropsite/main.rb +33 -0
  610. data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/draglabel.rb +78 -0
  611. data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/dragwidget.rb +130 -0
  612. data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/main.rb +33 -0
  613. data/ext/ruby/qtruby/examples/draganddrop/fridgemagnets/words.txt +48 -0
  614. data/ext/ruby/qtruby/examples/draganddrop/puzzle/example.jpg +0 -0
  615. data/ext/ruby/qtruby/examples/draganddrop/puzzle/main.rb +33 -0
  616. data/ext/ruby/qtruby/examples/draganddrop/puzzle/mainwindow.rb +136 -0
  617. data/ext/ruby/qtruby/examples/draganddrop/puzzle/pieceslist.rb +95 -0
  618. data/ext/ruby/qtruby/examples/draganddrop/puzzle/puzzlewidget.rb +190 -0
  619. data/ext/ruby/qtruby/examples/graphicsview/collidingmice/images/cheese.jpg +0 -0
  620. data/ext/ruby/qtruby/examples/graphicsview/collidingmice/main.rb +53 -0
  621. data/ext/ruby/qtruby/examples/graphicsview/collidingmice/makefile +2 -0
  622. data/ext/ruby/qtruby/examples/graphicsview/collidingmice/mice.qrc +5 -0
  623. data/ext/ruby/qtruby/examples/graphicsview/collidingmice/mouse.rb +176 -0
  624. data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/coloritem.rb +86 -0
  625. data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/images/head.png +0 -0
  626. data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/main.rb +57 -0
  627. data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/makefile +2 -0
  628. data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/robot.qrc +5 -0
  629. data/ext/ruby/qtruby/examples/graphicsview/dragdroprobot/robot.rb +246 -0
  630. data/ext/ruby/qtruby/examples/itemviews/chart/chart.qrc +5 -0
  631. data/ext/ruby/qtruby/examples/itemviews/chart/main.rb +33 -0
  632. data/ext/ruby/qtruby/examples/itemviews/chart/mainwindow.rb +151 -0
  633. data/ext/ruby/qtruby/examples/itemviews/chart/makefile +2 -0
  634. data/ext/ruby/qtruby/examples/itemviews/chart/mydata.cht +8 -0
  635. data/ext/ruby/qtruby/examples/itemviews/chart/pieview.rb +516 -0
  636. data/ext/ruby/qtruby/examples/itemviews/chart/qtdata.cht +14 -0
  637. data/ext/ruby/qtruby/examples/itemviews/dirview/main.rb +39 -0
  638. data/ext/ruby/qtruby/examples/itemviews/pixelator/imagemodel.rb +51 -0
  639. data/ext/ruby/qtruby/examples/itemviews/pixelator/images.qrc +5 -0
  640. data/ext/ruby/qtruby/examples/itemviews/pixelator/images/qt.png +0 -0
  641. data/ext/ruby/qtruby/examples/itemviews/pixelator/main.rb +34 -0
  642. data/ext/ruby/qtruby/examples/itemviews/pixelator/mainwindow.rb +218 -0
  643. data/ext/ruby/qtruby/examples/itemviews/pixelator/makefile +3 -0
  644. data/ext/ruby/qtruby/examples/itemviews/pixelator/pixeldelegate.rb +67 -0
  645. data/ext/ruby/qtruby/examples/itemviews/puzzle/example.jpg +0 -0
  646. data/ext/ruby/qtruby/examples/itemviews/puzzle/main.rb +36 -0
  647. data/ext/ruby/qtruby/examples/itemviews/puzzle/mainwindow.rb +143 -0
  648. data/ext/ruby/qtruby/examples/itemviews/puzzle/piecesmodel.rb +174 -0
  649. data/ext/ruby/qtruby/examples/itemviews/puzzle/puzzlewidget.rb +192 -0
  650. data/ext/ruby/qtruby/examples/itemviews/simpledommodel/domitem.rb +62 -0
  651. data/ext/ruby/qtruby/examples/itemviews/simpledommodel/dommodel.rb +139 -0
  652. data/ext/ruby/qtruby/examples/itemviews/simpledommodel/main.rb +33 -0
  653. data/ext/ruby/qtruby/examples/itemviews/simpledommodel/mainwindow.rb +66 -0
  654. data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/default.txt +40 -0
  655. data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/main.rb +41 -0
  656. data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/makefile +2 -0
  657. data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/simpletreemodel.qrc +5 -0
  658. data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/treeitem.rb +67 -0
  659. data/ext/ruby/qtruby/examples/itemviews/simpletreemodel/treemodel.rb +164 -0
  660. data/ext/ruby/qtruby/examples/itemviews/sortingmodel/default.txt +40 -0
  661. data/ext/ruby/qtruby/examples/itemviews/sortingmodel/main.rb +53 -0
  662. data/ext/ruby/qtruby/examples/itemviews/sortingmodel/treeitem.rb +73 -0
  663. data/ext/ruby/qtruby/examples/itemviews/sortingmodel/treemodel.rb +166 -0
  664. data/ext/ruby/qtruby/examples/itemviews/spinboxdelegate/main.rb +47 -0
  665. data/ext/ruby/qtruby/examples/itemviews/spinboxdelegate/spinboxdelegate.rb +62 -0
  666. data/ext/ruby/qtruby/examples/killerfilter/killerfilter.rb +55 -0
  667. data/ext/ruby/qtruby/examples/layouts/basiclayouts/dialog.rb +110 -0
  668. data/ext/ruby/qtruby/examples/layouts/basiclayouts/main.rb +31 -0
  669. data/ext/ruby/qtruby/examples/layouts/borderlayout/borderlayout.rb +190 -0
  670. data/ext/ruby/qtruby/examples/layouts/borderlayout/main.rb +32 -0
  671. data/ext/ruby/qtruby/examples/layouts/borderlayout/window.rb +52 -0
  672. data/ext/ruby/qtruby/examples/layouts/flowlayouts/flowlayout.rb +108 -0
  673. data/ext/ruby/qtruby/examples/layouts/flowlayouts/main.rb +32 -0
  674. data/ext/ruby/qtruby/examples/layouts/flowlayouts/window.rb +43 -0
  675. data/ext/ruby/qtruby/examples/mainwindows/application/images/copy.png +0 -0
  676. data/ext/ruby/qtruby/examples/mainwindows/application/images/cut.png +0 -0
  677. data/ext/ruby/qtruby/examples/mainwindows/application/images/new.png +0 -0
  678. data/ext/ruby/qtruby/examples/mainwindows/application/images/open.png +0 -0
  679. data/ext/ruby/qtruby/examples/mainwindows/application/images/paste.png +0 -0
  680. data/ext/ruby/qtruby/examples/mainwindows/application/images/save.png +0 -0
  681. data/ext/ruby/qtruby/examples/mainwindows/application/main.rb +32 -0
  682. data/ext/ruby/qtruby/examples/mainwindows/application/mainwindow.rb +285 -0
  683. data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/new.png +0 -0
  684. data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/print.png +0 -0
  685. data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/save.png +0 -0
  686. data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/images/undo.png +0 -0
  687. data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/main.rb +32 -0
  688. data/ext/ruby/qtruby/examples/mainwindows/dockwidgets/mainwindow.rb +302 -0
  689. data/ext/ruby/qtruby/examples/mainwindows/mdi/images/copy.png +0 -0
  690. data/ext/ruby/qtruby/examples/mainwindows/mdi/images/cut.png +0 -0
  691. data/ext/ruby/qtruby/examples/mainwindows/mdi/images/new.png +0 -0
  692. data/ext/ruby/qtruby/examples/mainwindows/mdi/images/open.png +0 -0
  693. data/ext/ruby/qtruby/examples/mainwindows/mdi/images/paste.png +0 -0
  694. data/ext/ruby/qtruby/examples/mainwindows/mdi/images/save.png +0 -0
  695. data/ext/ruby/qtruby/examples/mainwindows/mdi/main.rb +32 -0
  696. data/ext/ruby/qtruby/examples/mainwindows/mdi/mainwindow.rb +363 -0
  697. data/ext/ruby/qtruby/examples/mainwindows/mdi/mdichild.rb +152 -0
  698. data/ext/ruby/qtruby/examples/mainwindows/menus/main.rb +32 -0
  699. data/ext/ruby/qtruby/examples/mainwindows/menus/mainwindow.rb +327 -0
  700. data/ext/ruby/qtruby/examples/mainwindows/recentfiles/main.rb +32 -0
  701. data/ext/ruby/qtruby/examples/mainwindows/recentfiles/mainwindow.rb +258 -0
  702. data/ext/ruby/qtruby/examples/mainwindows/sdi/images/copy.png +0 -0
  703. data/ext/ruby/qtruby/examples/mainwindows/sdi/images/cut.png +0 -0
  704. data/ext/ruby/qtruby/examples/mainwindows/sdi/images/new.png +0 -0
  705. data/ext/ruby/qtruby/examples/mainwindows/sdi/images/open.png +0 -0
  706. data/ext/ruby/qtruby/examples/mainwindows/sdi/images/paste.png +0 -0
  707. data/ext/ruby/qtruby/examples/mainwindows/sdi/images/save.png +0 -0
  708. data/ext/ruby/qtruby/examples/mainwindows/sdi/main.rb +32 -0
  709. data/ext/ruby/qtruby/examples/mainwindows/sdi/mainwindow.rb +335 -0
  710. data/ext/ruby/qtruby/examples/network/broadcastreceiver/main.rb +32 -0
  711. data/ext/ruby/qtruby/examples/network/broadcastreceiver/receiver.rb +64 -0
  712. data/ext/ruby/qtruby/examples/network/broadcastsender/main.rb +32 -0
  713. data/ext/ruby/qtruby/examples/network/broadcastsender/sender.rb +70 -0
  714. data/ext/ruby/qtruby/examples/network/fortuneclient/client.rb +150 -0
  715. data/ext/ruby/qtruby/examples/network/fortuneclient/main.rb +32 -0
  716. data/ext/ruby/qtruby/examples/network/fortuneserver/main.rb +32 -0
  717. data/ext/ruby/qtruby/examples/network/fortuneserver/server.rb +88 -0
  718. data/ext/ruby/qtruby/examples/network/ftp/ftpwindow.rb +254 -0
  719. data/ext/ruby/qtruby/examples/network/ftp/images/cdtoparent.png +0 -0
  720. data/ext/ruby/qtruby/examples/network/ftp/images/dir.png +0 -0
  721. data/ext/ruby/qtruby/examples/network/ftp/images/file.png +0 -0
  722. data/ext/ruby/qtruby/examples/network/ftp/main.rb +32 -0
  723. data/ext/ruby/qtruby/examples/network/http/httpwindow.rb +187 -0
  724. data/ext/ruby/qtruby/examples/network/http/main.rb +32 -0
  725. data/ext/ruby/qtruby/examples/network/loopback/dialog.rb +163 -0
  726. data/ext/ruby/qtruby/examples/network/loopback/main.rb +32 -0
  727. data/ext/ruby/qtruby/examples/opengl/grabber/glwidget.rb +265 -0
  728. data/ext/ruby/qtruby/examples/opengl/grabber/main.rb +32 -0
  729. data/ext/ruby/qtruby/examples/opengl/grabber/mainwindow.rb +189 -0
  730. data/ext/ruby/qtruby/examples/opengl/hellogl/glwidget.rb +226 -0
  731. data/ext/ruby/qtruby/examples/opengl/hellogl/main.rb +32 -0
  732. data/ext/ruby/qtruby/examples/opengl/hellogl/window.rb +66 -0
  733. data/ext/ruby/qtruby/examples/opengl/textures/glwidget.rb +151 -0
  734. data/ext/ruby/qtruby/examples/opengl/textures/images/side1.png +0 -0
  735. data/ext/ruby/qtruby/examples/opengl/textures/images/side2.png +0 -0
  736. data/ext/ruby/qtruby/examples/opengl/textures/images/side3.png +0 -0
  737. data/ext/ruby/qtruby/examples/opengl/textures/images/side4.png +0 -0
  738. data/ext/ruby/qtruby/examples/opengl/textures/images/side5.png +0 -0
  739. data/ext/ruby/qtruby/examples/opengl/textures/images/side6.png +0 -0
  740. data/ext/ruby/qtruby/examples/opengl/textures/main.rb +32 -0
  741. data/ext/ruby/qtruby/examples/opengl/textures/window.rb +77 -0
  742. data/ext/ruby/qtruby/examples/painting/basicdrawing/images/brick.png +0 -0
  743. data/ext/ruby/qtruby/examples/painting/basicdrawing/images/qt-logo.png +0 -0
  744. data/ext/ruby/qtruby/examples/painting/basicdrawing/main.rb +32 -0
  745. data/ext/ruby/qtruby/examples/painting/basicdrawing/renderarea.rb +166 -0
  746. data/ext/ruby/qtruby/examples/painting/basicdrawing/window.rb +215 -0
  747. data/ext/ruby/qtruby/examples/painting/concentriccircles/circlewidget.rb +88 -0
  748. data/ext/ruby/qtruby/examples/painting/concentriccircles/main.rb +32 -0
  749. data/ext/ruby/qtruby/examples/painting/concentriccircles/window.rb +72 -0
  750. data/ext/ruby/qtruby/examples/painting/fontsampler/main.rb +32 -0
  751. data/ext/ruby/qtruby/examples/painting/fontsampler/mainwindow.rb +368 -0
  752. data/ext/ruby/qtruby/examples/painting/fontsampler/mainwindowbase.ui +136 -0
  753. data/ext/ruby/qtruby/examples/painting/fontsampler/makefile +8 -0
  754. data/ext/ruby/qtruby/examples/painting/fontsampler/previewdialog.rb +256 -0
  755. data/ext/ruby/qtruby/examples/painting/fontsampler/previewdialogbase.ui +224 -0
  756. data/ext/ruby/qtruby/examples/painting/fontsampler/previewlabel.rb +43 -0
  757. data/ext/ruby/qtruby/examples/painting/imagecomposition/imagecomposer.rb +152 -0
  758. data/ext/ruby/qtruby/examples/painting/imagecomposition/imagecomposition.qrc +6 -0
  759. data/ext/ruby/qtruby/examples/painting/imagecomposition/images/background.png +0 -0
  760. data/ext/ruby/qtruby/examples/painting/imagecomposition/images/blackrectangle.png +0 -0
  761. data/ext/ruby/qtruby/examples/painting/imagecomposition/images/butterfly.png +0 -0
  762. data/ext/ruby/qtruby/examples/painting/imagecomposition/images/checker.png +0 -0
  763. data/ext/ruby/qtruby/examples/painting/imagecomposition/main.rb +33 -0
  764. data/ext/ruby/qtruby/examples/painting/imagecomposition/makefile +2 -0
  765. data/ext/ruby/qtruby/examples/painting/painterpaths/main.rb +32 -0
  766. data/ext/ruby/qtruby/examples/painting/painterpaths/renderarea.rb +97 -0
  767. data/ext/ruby/qtruby/examples/painting/painterpaths/window.rb +247 -0
  768. data/ext/ruby/qtruby/examples/painting/svgviewer/files/bubbles.svg +212 -0
  769. data/ext/ruby/qtruby/examples/painting/svgviewer/files/cubic.svg +77 -0
  770. data/ext/ruby/qtruby/examples/painting/svgviewer/files/spheres.svg +79 -0
  771. data/ext/ruby/qtruby/examples/painting/svgviewer/main.rb +38 -0
  772. data/ext/ruby/qtruby/examples/painting/svgviewer/mainwindow.rb +99 -0
  773. data/ext/ruby/qtruby/examples/painting/svgviewer/makefile +2 -0
  774. data/ext/ruby/qtruby/examples/painting/svgviewer/svgview.rb +156 -0
  775. data/ext/ruby/qtruby/examples/painting/svgviewer/svgviewer.qrc +6 -0
  776. data/ext/ruby/qtruby/examples/painting/svgviewer/svgwindow.rb +87 -0
  777. data/ext/ruby/qtruby/examples/painting/transformations/main.rb +32 -0
  778. data/ext/ruby/qtruby/examples/painting/transformations/renderarea.rb +127 -0
  779. data/ext/ruby/qtruby/examples/painting/transformations/window.rb +153 -0
  780. data/ext/ruby/qtruby/examples/passivepopup/passivepopup.rb +38 -0
  781. data/ext/ruby/qtruby/examples/qdbus/chat/chat.rb +146 -0
  782. data/ext/ruby/qtruby/examples/qdbus/chat/chat_adaptor.rb +12 -0
  783. data/ext/ruby/qtruby/examples/qdbus/chat/chat_interface.rb +13 -0
  784. data/ext/ruby/qtruby/examples/qdbus/chat/chatmainwindow.ui +184 -0
  785. data/ext/ruby/qtruby/examples/qdbus/chat/chatsetnickname.ui +145 -0
  786. data/ext/ruby/qtruby/examples/qdbus/chat/makefile +8 -0
  787. data/ext/ruby/qtruby/examples/qdbus/complexpingpong/complexping.rb +92 -0
  788. data/ext/ruby/qtruby/examples/qdbus/complexpingpong/complexpong.rb +83 -0
  789. data/ext/ruby/qtruby/examples/qdbus/complexpingpong/ping-common.rb +1 -0
  790. data/ext/ruby/qtruby/examples/qdbus/listnames/listnames.rb +69 -0
  791. data/ext/ruby/qtruby/examples/qdbus/pingpong/ping-common.rb +1 -0
  792. data/ext/ruby/qtruby/examples/qdbus/pingpong/ping.rb +52 -0
  793. data/ext/ruby/qtruby/examples/qdbus/pingpong/pong.rb +55 -0
  794. data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/car/car.rb +151 -0
  795. data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/car/main.rb +50 -0
  796. data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/controller.rb +66 -0
  797. data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/controller.ui +61 -0
  798. data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/main.rb +32 -0
  799. data/ext/ruby/qtruby/examples/qdbus/remotecontrolledcar/controller/makefile +2 -0
  800. data/ext/ruby/qtruby/examples/qtscribble/scribble.rb +270 -0
  801. data/ext/ruby/qtruby/examples/richtext/calendar/main.rb +33 -0
  802. data/ext/ruby/qtruby/examples/richtext/calendar/mainwindow.rb +173 -0
  803. data/ext/ruby/qtruby/examples/richtext/orderform/detailsdialog.rb +130 -0
  804. data/ext/ruby/qtruby/examples/richtext/orderform/main.rb +34 -0
  805. data/ext/ruby/qtruby/examples/richtext/orderform/mainwindow.rb +194 -0
  806. data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/examples/example +79 -0
  807. data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/highlighter.rb +90 -0
  808. data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/main.rb +34 -0
  809. data/ext/ruby/qtruby/examples/richtext/syntaxhighlighter/mainwindow.rb +105 -0
  810. data/ext/ruby/qtruby/examples/ruboids/Manifest +26 -0
  811. data/ext/ruby/qtruby/examples/ruboids/README +53 -0
  812. data/ext/ruby/qtruby/examples/ruboids/TODO +29 -0
  813. data/ext/ruby/qtruby/examples/ruboids/boids.properties +33 -0
  814. data/ext/ruby/qtruby/examples/ruboids/generateManifest.rb +42 -0
  815. data/ext/ruby/qtruby/examples/ruboids/index.html +147 -0
  816. data/ext/ruby/qtruby/examples/ruboids/release.rb +152 -0
  817. data/ext/ruby/qtruby/examples/ruboids/ruboids/Boid.rb +141 -0
  818. data/ext/ruby/qtruby/examples/ruboids/ruboids/BoidView.rb +159 -0
  819. data/ext/ruby/qtruby/examples/ruboids/ruboids/Camera.rb +24 -0
  820. data/ext/ruby/qtruby/examples/ruboids/ruboids/CameraDialog.rb +218 -0
  821. data/ext/ruby/qtruby/examples/ruboids/ruboids/Canvas.rb +143 -0
  822. data/ext/ruby/qtruby/examples/ruboids/ruboids/Cloud.rb +61 -0
  823. data/ext/ruby/qtruby/examples/ruboids/ruboids/CloudView.rb +54 -0
  824. data/ext/ruby/qtruby/examples/ruboids/ruboids/Flock.rb +47 -0
  825. data/ext/ruby/qtruby/examples/ruboids/ruboids/Graphics.rb +278 -0
  826. data/ext/ruby/qtruby/examples/ruboids/ruboids/Params.rb +87 -0
  827. data/ext/ruby/qtruby/examples/ruboids/ruboids/Point.rb +153 -0
  828. data/ext/ruby/qtruby/examples/ruboids/ruboids/Thing.rb +34 -0
  829. data/ext/ruby/qtruby/examples/ruboids/ruboids/Triangle.rb +21 -0
  830. data/ext/ruby/qtruby/examples/ruboids/ruboids/View.rb +88 -0
  831. data/ext/ruby/qtruby/examples/ruboids/ruboids/World.rb +82 -0
  832. data/ext/ruby/qtruby/examples/ruboids/ruboids/WorldWindow.rb +52 -0
  833. data/ext/ruby/qtruby/examples/ruboids/ruboids/info.rb +12 -0
  834. data/ext/ruby/qtruby/examples/ruboids/ruboids/ruboids.rb +29 -0
  835. data/ext/ruby/qtruby/examples/textedit/textedit.rb +150 -0
  836. data/ext/ruby/qtruby/examples/tutorial/t1/t1.rb +10 -0
  837. data/ext/ruby/qtruby/examples/tutorial/t10/cannon.rb +72 -0
  838. data/ext/ruby/qtruby/examples/tutorial/t10/lcdrange.rb +45 -0
  839. data/ext/ruby/qtruby/examples/tutorial/t10/t10.rb +55 -0
  840. data/ext/ruby/qtruby/examples/tutorial/t11/cannon.rb +124 -0
  841. data/ext/ruby/qtruby/examples/tutorial/t11/lcdrange.rb +45 -0
  842. data/ext/ruby/qtruby/examples/tutorial/t11/t11.rb +65 -0
  843. data/ext/ruby/qtruby/examples/tutorial/t12/cannon.rb +158 -0
  844. data/ext/ruby/qtruby/examples/tutorial/t12/lcdrange.rb +59 -0
  845. data/ext/ruby/qtruby/examples/tutorial/t12/t12.rb +66 -0
  846. data/ext/ruby/qtruby/examples/tutorial/t13/cannon.rb +208 -0
  847. data/ext/ruby/qtruby/examples/tutorial/t13/gamebrd.rb +113 -0
  848. data/ext/ruby/qtruby/examples/tutorial/t13/lcdrange.rb +60 -0
  849. data/ext/ruby/qtruby/examples/tutorial/t13/t13.rb +11 -0
  850. data/ext/ruby/qtruby/examples/tutorial/t14/cannon.rb +263 -0
  851. data/ext/ruby/qtruby/examples/tutorial/t14/gamebrd.rb +123 -0
  852. data/ext/ruby/qtruby/examples/tutorial/t14/lcdrange.rb +63 -0
  853. data/ext/ruby/qtruby/examples/tutorial/t14/t14.rb +11 -0
  854. data/ext/ruby/qtruby/examples/tutorial/t2/t2.rb +16 -0
  855. data/ext/ruby/qtruby/examples/tutorial/t3/t3.rb +18 -0
  856. data/ext/ruby/qtruby/examples/tutorial/t4/t4.rb +25 -0
  857. data/ext/ruby/qtruby/examples/tutorial/t5/t5.rb +37 -0
  858. data/ext/ruby/qtruby/examples/tutorial/t6/t6.rb +52 -0
  859. data/ext/ruby/qtruby/examples/tutorial/t7/lcdrange.rb +32 -0
  860. data/ext/ruby/qtruby/examples/tutorial/t7/t7.rb +42 -0
  861. data/ext/ruby/qtruby/examples/tutorial/t8/cannon.rb +38 -0
  862. data/ext/ruby/qtruby/examples/tutorial/t8/lcdrange.rb +45 -0
  863. data/ext/ruby/qtruby/examples/tutorial/t8/t8.rb +43 -0
  864. data/ext/ruby/qtruby/examples/tutorial/t9/cannon.rb +45 -0
  865. data/ext/ruby/qtruby/examples/tutorial/t9/lcdrange.rb +46 -0
  866. data/ext/ruby/qtruby/examples/tutorial/t9/t9.rb +43 -0
  867. data/ext/ruby/qtruby/examples/widgets/analogclock/analogclock.rb +94 -0
  868. data/ext/ruby/qtruby/examples/widgets/analogclock/main.rb +9 -0
  869. data/ext/ruby/qtruby/examples/widgets/calculator/button.rb +45 -0
  870. data/ext/ruby/qtruby/examples/widgets/calculator/calculator.rb +382 -0
  871. data/ext/ruby/qtruby/examples/widgets/calculator/main.rb +32 -0
  872. data/ext/ruby/qtruby/examples/widgets/charactermap/characterwidget.rb +110 -0
  873. data/ext/ruby/qtruby/examples/widgets/charactermap/main.rb +32 -0
  874. data/ext/ruby/qtruby/examples/widgets/charactermap/mainwindow.rb +118 -0
  875. data/ext/ruby/qtruby/examples/widgets/digitalclock/digitalclock.rb +30 -0
  876. data/ext/ruby/qtruby/examples/widgets/digitalclock/main.rb +9 -0
  877. data/ext/ruby/qtruby/examples/widgets/groupbox/main.rb +32 -0
  878. data/ext/ruby/qtruby/examples/widgets/groupbox/window.rb +134 -0
  879. data/ext/ruby/qtruby/examples/widgets/icons/iconpreviewarea.rb +111 -0
  880. data/ext/ruby/qtruby/examples/widgets/icons/iconsizespinbox.rb +39 -0
  881. data/ext/ruby/qtruby/examples/widgets/icons/imagedelegate.rb +73 -0
  882. data/ext/ruby/qtruby/examples/widgets/icons/images/designer.png +0 -0
  883. data/ext/ruby/qtruby/examples/widgets/icons/images/find_disabled.png +0 -0
  884. data/ext/ruby/qtruby/examples/widgets/icons/images/find_normal.png +0 -0
  885. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_128x128.png +0 -0
  886. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_16x16.png +0 -0
  887. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_32x32.png +0 -0
  888. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_off_64x64.png +0 -0
  889. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_128x128.png +0 -0
  890. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_16x16.png +0 -0
  891. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_32x32.png +0 -0
  892. data/ext/ruby/qtruby/examples/widgets/icons/images/monkey_on_64x64.png +0 -0
  893. data/ext/ruby/qtruby/examples/widgets/icons/images/qtopia_16x16.png +0 -0
  894. data/ext/ruby/qtruby/examples/widgets/icons/images/qtopia_32x32.png +0 -0
  895. data/ext/ruby/qtruby/examples/widgets/icons/images/qtopia_48x48.png +0 -0
  896. data/ext/ruby/qtruby/examples/widgets/icons/main.rb +32 -0
  897. data/ext/ruby/qtruby/examples/widgets/icons/mainwindow.rb +351 -0
  898. data/ext/ruby/qtruby/examples/widgets/imageviewer/imageviewer.rb +219 -0
  899. data/ext/ruby/qtruby/examples/widgets/imageviewer/main.rb +32 -0
  900. data/ext/ruby/qtruby/examples/widgets/lineedits/main.rb +32 -0
  901. data/ext/ruby/qtruby/examples/widgets/lineedits/window.rb +199 -0
  902. data/ext/ruby/qtruby/examples/widgets/movie/images/open.png +0 -0
  903. data/ext/ruby/qtruby/examples/widgets/movie/images/pause.png +0 -0
  904. data/ext/ruby/qtruby/examples/widgets/movie/images/play.png +0 -0
  905. data/ext/ruby/qtruby/examples/widgets/movie/images/quit.png +0 -0
  906. data/ext/ruby/qtruby/examples/widgets/movie/images/stop.png +0 -0
  907. data/ext/ruby/qtruby/examples/widgets/movie/main.rb +32 -0
  908. data/ext/ruby/qtruby/examples/widgets/movie/movieplayer.rb +201 -0
  909. data/ext/ruby/qtruby/examples/widgets/movie/movies/fire.mng +0 -0
  910. data/ext/ruby/qtruby/examples/widgets/screenshot/main.rb +32 -0
  911. data/ext/ruby/qtruby/examples/widgets/screenshot/screenshot.rb +155 -0
  912. data/ext/ruby/qtruby/examples/widgets/scribble/main.rb +32 -0
  913. data/ext/ruby/qtruby/examples/widgets/scribble/mainwindow.rb +202 -0
  914. data/ext/ruby/qtruby/examples/widgets/scribble/scribblearea.rb +154 -0
  915. data/ext/ruby/qtruby/examples/widgets/sliders/main.rb +32 -0
  916. data/ext/ruby/qtruby/examples/widgets/sliders/slidersgroup.rb +97 -0
  917. data/ext/ruby/qtruby/examples/widgets/sliders/window.rb +124 -0
  918. data/ext/ruby/qtruby/examples/widgets/spinboxes/main.rb +32 -0
  919. data/ext/ruby/qtruby/examples/widgets/spinboxes/window.rb +213 -0
  920. data/ext/ruby/qtruby/examples/widgets/tetrix/main.rb +33 -0
  921. data/ext/ruby/qtruby/examples/widgets/tetrix/tetrixboard.rb +346 -0
  922. data/ext/ruby/qtruby/examples/widgets/tetrix/tetrixpiece.rb +135 -0
  923. data/ext/ruby/qtruby/examples/widgets/tetrix/tetrixwindow.rb +88 -0
  924. data/ext/ruby/qtruby/examples/widgets/tooltips/images/circle.png +0 -0
  925. data/ext/ruby/qtruby/examples/widgets/tooltips/images/square.png +0 -0
  926. data/ext/ruby/qtruby/examples/widgets/tooltips/images/triangle.png +0 -0
  927. data/ext/ruby/qtruby/examples/widgets/tooltips/main.rb +32 -0
  928. data/ext/ruby/qtruby/examples/widgets/tooltips/shapeitem.rb +31 -0
  929. data/ext/ruby/qtruby/examples/widgets/tooltips/sortingbox.rb +222 -0
  930. data/ext/ruby/qtruby/examples/widgets/wiggly/dialog.rb +48 -0
  931. data/ext/ruby/qtruby/examples/widgets/wiggly/main.rb +9 -0
  932. data/ext/ruby/qtruby/examples/widgets/wiggly/wigglywidget.rb +76 -0
  933. data/ext/ruby/qtruby/examples/widgets/windowflags/controllerwindow.rb +195 -0
  934. data/ext/ruby/qtruby/examples/widgets/windowflags/main.rb +32 -0
  935. data/ext/ruby/qtruby/examples/widgets/windowflags/previewwindow.rb +103 -0
  936. data/ext/ruby/qtruby/examples/xml/dombookmarks/frank.xbel +230 -0
  937. data/ext/ruby/qtruby/examples/xml/dombookmarks/jennifer.xbel +93 -0
  938. data/ext/ruby/qtruby/examples/xml/dombookmarks/main.rb +34 -0
  939. data/ext/ruby/qtruby/examples/xml/dombookmarks/mainwindow.rb +129 -0
  940. data/ext/ruby/qtruby/examples/xml/dombookmarks/xbeltree.rb +172 -0
  941. data/ext/ruby/qtruby/examples/xml/saxbookmarks/frank.xbel +230 -0
  942. data/ext/ruby/qtruby/examples/xml/saxbookmarks/jennifer.xbel +93 -0
  943. data/ext/ruby/qtruby/examples/xml/saxbookmarks/main.rb +34 -0
  944. data/ext/ruby/qtruby/examples/xml/saxbookmarks/mainwindow.rb +144 -0
  945. data/ext/ruby/qtruby/examples/xml/saxbookmarks/xbelgenerator.rb +95 -0
  946. data/ext/ruby/qtruby/examples/xml/saxbookmarks/xbelhandler.rb +122 -0
  947. data/ext/ruby/qtruby/rails_support/CMakeLists.txt +1 -0
  948. data/ext/ruby/qtruby/rails_support/active_item_model.rb +234 -0
  949. data/ext/ruby/qtruby/rails_support/active_table_model.rb +122 -0
  950. data/ext/ruby/qtruby/src/CMakeLists.txt +103 -0
  951. data/ext/ruby/qtruby/src/Qt.cpp +1279 -0
  952. data/ext/ruby/qtruby/src/extconf.rb +11 -0
  953. data/ext/ruby/qtruby/src/handlers.cpp +2622 -0
  954. data/ext/ruby/qtruby/src/lib/CMakeLists.txt +16 -0
  955. data/ext/ruby/qtruby/src/lib/Qt.rb +1 -0
  956. data/ext/ruby/qtruby/src/lib/Qt/CMakeLists.txt +9 -0
  957. data/ext/ruby/qtruby/src/lib/Qt/qtruby4.rb +3177 -0
  958. data/ext/ruby/qtruby/src/lib/Qt3.rb +6 -0
  959. data/ext/ruby/qtruby/src/lib/Qt4.rb +6 -0
  960. data/ext/ruby/qtruby/src/marshall.h +66 -0
  961. data/ext/ruby/qtruby/src/marshall_basetypes.h +208 -0
  962. data/ext/ruby/qtruby/src/marshall_complex.h +175 -0
  963. data/ext/ruby/qtruby/src/marshall_macros.h +647 -0
  964. data/ext/ruby/qtruby/src/marshall_primitives.h +290 -0
  965. data/ext/ruby/qtruby/src/marshall_types.cpp +815 -0
  966. data/ext/ruby/qtruby/src/marshall_types.h +240 -0
  967. data/ext/ruby/qtruby/src/qtruby.cpp +2483 -0
  968. data/ext/ruby/qtruby/src/qtruby.h +185 -0
  969. data/ext/ruby/qtruby/src/smokeruby.h +164 -0
  970. data/ext/ruby/qtruby/test/opoverloading.rb +46 -0
  971. data/ext/ruby/qtruby/test/unittests.rb +151 -0
  972. data/ext/ruby/qtruby/tools/CMakeLists.txt +2 -0
  973. data/ext/ruby/qtruby/tools/rbrcc/CMakeLists.txt +6 -0
  974. data/ext/ruby/qtruby/tools/rbrcc/Messages.sh +7 -0
  975. data/ext/ruby/qtruby/tools/rbrcc/main.cpp +173 -0
  976. data/ext/ruby/qtruby/tools/rbrcc/rbrcc.pro +14 -0
  977. data/ext/ruby/qtruby/tools/rbrcc/rcc.cpp +648 -0
  978. data/ext/ruby/qtruby/tools/rbrcc/rcc.h +165 -0
  979. data/ext/ruby/qtruby/tools/rbuic/CMakeLists.txt +35 -0
  980. data/ext/ruby/qtruby/tools/rbuic/LICENSE.GPL +280 -0
  981. data/ext/ruby/qtruby/tools/rbuic/Messages.sh +7 -0
  982. data/ext/ruby/qtruby/tools/rbuic/TODO +4 -0
  983. data/ext/ruby/qtruby/tools/rbuic/customwidgetsinfo.cpp +106 -0
  984. data/ext/ruby/qtruby/tools/rbuic/customwidgetsinfo.h +95 -0
  985. data/ext/ruby/qtruby/tools/rbuic/databaseinfo.cpp +102 -0
  986. data/ext/ruby/qtruby/tools/rbuic/databaseinfo.h +85 -0
  987. data/ext/ruby/qtruby/tools/rbuic/driver.cpp +384 -0
  988. data/ext/ruby/qtruby/tools/rbuic/driver.h +141 -0
  989. data/ext/ruby/qtruby/tools/rbuic/globaldefs.h +60 -0
  990. data/ext/ruby/qtruby/tools/rbuic/main.cpp +201 -0
  991. data/ext/ruby/qtruby/tools/rbuic/option.h +107 -0
  992. data/ext/ruby/qtruby/tools/rbuic/rbuic.pri +23 -0
  993. data/ext/ruby/qtruby/tools/rbuic/rbuic4.pro +43 -0
  994. data/ext/ruby/qtruby/tools/rbuic/ruby/rbextractimages.cpp +150 -0
  995. data/ext/ruby/qtruby/tools/rbuic/ruby/rbextractimages.h +83 -0
  996. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwritedeclaration.cpp +217 -0
  997. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwritedeclaration.h +85 -0
  998. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondata.cpp +185 -0
  999. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondata.h +86 -0
  1000. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondeclaration.cpp +88 -0
  1001. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteicondeclaration.h +83 -0
  1002. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteiconinitialization.cpp +126 -0
  1003. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteiconinitialization.h +87 -0
  1004. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteinitialization.cpp +2478 -0
  1005. data/ext/ruby/qtruby/tools/rbuic/ruby/rbwriteinitialization.h +314 -0
  1006. data/ext/ruby/qtruby/tools/rbuic/ruby/ruby.pri +18 -0
  1007. data/ext/ruby/qtruby/tools/rbuic/treewalker.cpp +318 -0
  1008. data/ext/ruby/qtruby/tools/rbuic/treewalker.h +139 -0
  1009. data/ext/ruby/qtruby/tools/rbuic/ui4.cpp +7623 -0
  1010. data/ext/ruby/qtruby/tools/rbuic/ui4.h +3180 -0
  1011. data/ext/ruby/qtruby/tools/rbuic/uic.cpp +438 -0
  1012. data/ext/ruby/qtruby/tools/rbuic/uic.h +154 -0
  1013. data/ext/ruby/qtruby/tools/rbuic/utils.h +125 -0
  1014. data/ext/ruby/qtruby/tools/rbuic/validator.cpp +100 -0
  1015. data/ext/ruby/qtruby/tools/rbuic/validator.h +80 -0
  1016. data/ext/ruby/qtscript/CMakeLists.txt +19 -0
  1017. data/ext/ruby/qtscript/qtscript.cpp +82 -0
  1018. data/ext/ruby/qtscript/qtscript.rb +40 -0
  1019. data/ext/ruby/qtscript/qtscripthandlers.cpp +36 -0
  1020. data/ext/ruby/qtscript/smokedata.cpp +1403 -0
  1021. data/ext/ruby/qttest/CMakeLists.txt +18 -0
  1022. data/ext/ruby/qttest/ChangeLog +9 -0
  1023. data/ext/ruby/qttest/examples/myfirsttest.rb +30 -0
  1024. data/ext/ruby/qttest/qttest.cpp +82 -0
  1025. data/ext/ruby/qttest/qttest.rb +166 -0
  1026. data/ext/ruby/qttest/qttesthandlers.cpp +35 -0
  1027. data/ext/ruby/qtuitools/CMakeLists.txt +16 -0
  1028. data/ext/ruby/qtuitools/qtuitools.cpp +82 -0
  1029. data/ext/ruby/qtuitools/qtuitools.rb +17 -0
  1030. data/ext/ruby/qtuitools/qtuitoolshandlers.cpp +31 -0
  1031. data/ext/ruby/qtwebkit/CMakeLists.txt +17 -0
  1032. data/ext/ruby/qtwebkit/qtwebkit.cpp +66 -0
  1033. data/ext/ruby/qtwebkit/qtwebkit.rb +17 -0
  1034. data/ext/ruby/qtwebkit/qtwebkithandlers.cpp +39 -0
  1035. data/ext/smoke/CMakeLists.txt +35 -0
  1036. data/ext/smoke/deptool/CMakeLists.txt +7 -0
  1037. data/ext/smoke/deptool/main.cpp +128 -0
  1038. data/ext/smoke/qt_smoke.h +16 -0
  1039. data/ext/smoke/qtcore/CMakeLists.txt +88 -0
  1040. data/ext/smoke/qtcore/QtGuess.txt +181 -0
  1041. data/ext/smoke/qtcore/config.xml.cmake +10 -0
  1042. data/ext/smoke/qtcore/qt-config.xml.cmake +21 -0
  1043. data/ext/smoke/qtcore/qtcore_includes.h +1 -0
  1044. data/ext/smoke/qtcore/smokeconfig.xml +189 -0
  1045. data/ext/smoke/qtcore/tests/CMakeLists.txt +13 -0
  1046. data/ext/smoke/qtcore/tests/test.cpp +846 -0
  1047. data/ext/smoke/qtcore_smoke.h +16 -0
  1048. data/ext/smoke/qtdbus/CMakeLists.txt +38 -0
  1049. data/ext/smoke/qtdbus/config.xml.cmake +11 -0
  1050. data/ext/smoke/qtdbus/qtdbus_includes.h +2 -0
  1051. data/ext/smoke/qtdbus/smokeconfig.xml +63 -0
  1052. data/ext/smoke/qtdbus_smoke.h +16 -0
  1053. data/ext/smoke/qtgui/CMakeLists.txt +76 -0
  1054. data/ext/smoke/qtgui/config.xml.cmake +11 -0
  1055. data/ext/smoke/qtgui/qtgui_includes.h +7 -0
  1056. data/ext/smoke/qtgui/smokeconfig.xml +490 -0
  1057. data/ext/smoke/qtgui_smoke.h +16 -0
  1058. data/ext/smoke/qtmultimedia/CMakeLists.txt +42 -0
  1059. data/ext/smoke/qtmultimedia/config.xml.cmake +12 -0
  1060. data/ext/smoke/qtmultimedia/qtmultimedia_includes.h +3 -0
  1061. data/ext/smoke/qtmultimedia/smokeconfig.xml +50 -0
  1062. data/ext/smoke/qtmultimedia_smoke.h +16 -0
  1063. data/ext/smoke/qtnetwork/CMakeLists.txt +38 -0
  1064. data/ext/smoke/qtnetwork/config.xml.cmake +11 -0
  1065. data/ext/smoke/qtnetwork/qtnetwork_includes.h +2 -0
  1066. data/ext/smoke/qtnetwork/smokeconfig.xml +76 -0
  1067. data/ext/smoke/qtnetwork_smoke.h +16 -0
  1068. data/ext/smoke/qtopengl/CMakeLists.txt +43 -0
  1069. data/ext/smoke/qtopengl/config.xml.cmake +12 -0
  1070. data/ext/smoke/qtopengl/qtopengl_includes.h +3 -0
  1071. data/ext/smoke/qtopengl/smokeconfig.xml +56 -0
  1072. data/ext/smoke/qtopengl_smoke.h +16 -0
  1073. data/ext/smoke/qtscript/CMakeLists.txt +31 -0
  1074. data/ext/smoke/qtscript/config.xml.cmake +11 -0
  1075. data/ext/smoke/qtscript/qtscript_includes.h +14 -0
  1076. data/ext/smoke/qtscript/smokeconfig.xml +39 -0
  1077. data/ext/smoke/qtscript_smoke.h +16 -0
  1078. data/ext/smoke/qtsql/CMakeLists.txt +41 -0
  1079. data/ext/smoke/qtsql/config.xml.cmake +11 -0
  1080. data/ext/smoke/qtsql/qtsql_includes.h +2 -0
  1081. data/ext/smoke/qtsql/smokeconfig.xml +56 -0
  1082. data/ext/smoke/qtsql_smoke.h +16 -0
  1083. data/ext/smoke/qtsvg/CMakeLists.txt +43 -0
  1084. data/ext/smoke/qtsvg/config.xml.cmake +12 -0
  1085. data/ext/smoke/qtsvg/qtsvg_includes.h +3 -0
  1086. data/ext/smoke/qtsvg/smokeconfig.xml +45 -0
  1087. data/ext/smoke/qtsvg_smoke.h +16 -0
  1088. data/ext/smoke/qttest/CMakeLists.txt +35 -0
  1089. data/ext/smoke/qttest/config.xml.cmake +12 -0
  1090. data/ext/smoke/qttest/qttest_includes.h +14 -0
  1091. data/ext/smoke/qttest/smokeconfig.xml +36 -0
  1092. data/ext/smoke/qttest_smoke.h +16 -0
  1093. data/ext/smoke/qtuitools/CMakeLists.txt +30 -0
  1094. data/ext/smoke/qtuitools/config.xml.cmake +12 -0
  1095. data/ext/smoke/qtuitools/qtuitools_includes.h +1 -0
  1096. data/ext/smoke/qtuitools/smokeconfig.xml +20 -0
  1097. data/ext/smoke/qtuitools_smoke.h +16 -0
  1098. data/ext/smoke/qtwebkit/CMakeLists.txt +36 -0
  1099. data/ext/smoke/qtwebkit/config.xml.cmake +11 -0
  1100. data/ext/smoke/qtwebkit/qtwebkit_includes.h +1 -0
  1101. data/ext/smoke/qtwebkit/smokeconfig.xml +45 -0
  1102. data/ext/smoke/qtwebkit_smoke.h +16 -0
  1103. data/ext/smoke/qtxml/CMakeLists.txt +41 -0
  1104. data/ext/smoke/qtxml/config.xml.cmake +11 -0
  1105. data/ext/smoke/qtxml/qtxml_includes.h +2 -0
  1106. data/ext/smoke/qtxml/smokeconfig.xml +70 -0
  1107. data/ext/smoke/qtxml_smoke.h +16 -0
  1108. data/ext/smoke/qtxmlpatterns/CMakeLists.txt +42 -0
  1109. data/ext/smoke/qtxmlpatterns/config.xml.cmake +12 -0
  1110. data/ext/smoke/qtxmlpatterns/qtxmlpatterns_includes.h +3 -0
  1111. data/ext/smoke/qtxmlpatterns/smokeconfig.xml +80 -0
  1112. data/ext/smoke/qtxmlpatterns_smoke.h +16 -0
  1113. data/ext/smoke/smoke.h +557 -0
  1114. data/ext/smoke/smokeapi/CMakeLists.txt +9 -0
  1115. data/ext/smoke/smokeapi/main.cpp +309 -0
  1116. data/ext/smoke/smokebase/CMakeLists.txt +11 -0
  1117. data/ext/smoke/smokebase/smokebase.cpp +6 -0
  1118. data/ext/smoke/solid_smoke.h +16 -0
  1119. data/extconf.rb +231 -0
  1120. data/lib/Qt.rb +1 -0
  1121. data/lib/Qt/qtruby4.rb +3177 -0
  1122. data/lib/Qt4.rb +20 -0
  1123. data/lib/qtbindings_version.rb +2 -0
  1124. data/lib/qtscript/qtscript.rb +40 -0
  1125. data/lib/qttest/qttest.rb +166 -0
  1126. data/lib/qtuitools/qtuitools.rb +17 -0
  1127. data/lib/qtwebkit/qtwebkit.rb +17 -0
  1128. data/qtbindings.gemspec +18 -0
  1129. data/qtbindingsnative.gemspec +18 -0
  1130. metadata +1202 -0
@@ -0,0 +1,558 @@
1
+ /*
2
+ Copyright 2005 Roberto Raggi <roberto@kdevelop.org>
3
+ Copyright 2006 Hamish Rodda <rodda@kde.org>
4
+ Copyright 2007-2009 David Nolden <david.nolden.kdevelop@art-master.de>
5
+
6
+ Permission to use, copy, modify, distribute, and sell this software and its
7
+ documentation for any purpose is hereby granted without fee, provided that
8
+ the above copyright notice appear in all copies and that both that
9
+ copyright notice and this permission notice appear in supporting
10
+ documentation.
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ KDEVELOP TEAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19
+ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+ */
22
+
23
+ #include "pp-macro-expander.h"
24
+
25
+ #include <QDate>
26
+ #include <QTime>
27
+ #include <QtDebug>
28
+
29
+ #include "../problem.h"
30
+ #include "../indexedstring.h"
31
+
32
+ #include "pp-internal.h"
33
+ #include "pp-engine.h"
34
+ #include "pp-environment.h"
35
+ #include "pp-location.h"
36
+ #include "preprocessor.h"
37
+ #include "chartools.h"
38
+
39
+ const int maxMacroExpansionDepth = 50;
40
+
41
+ QString joinIndexVector(const uint* arrays, uint size, QString between) {
42
+ QString ret;
43
+ FOREACH_CUSTOM(uint item, arrays, size) {
44
+ if(!ret.isEmpty())
45
+ ret += between;
46
+ ret += IndexedString::fromIndex(item).str();
47
+ }
48
+ return ret;
49
+ }
50
+
51
+ QString joinIndexVector(const QVector<IndexedString>& list, QString between) {
52
+ QString ret;
53
+ foreach(const IndexedString& item, list) {
54
+ if(!ret.isEmpty())
55
+ ret += between;
56
+ ret += item.str();
57
+ }
58
+ return ret;
59
+ }
60
+
61
+ void trim(QVector<uint>& array) {
62
+ int lastValid = array.size()-1;
63
+ for(; lastValid >= 0; --lastValid)
64
+ if(array[lastValid] != indexFromCharacter(' '))
65
+ break;
66
+
67
+ array.resize(lastValid+1);
68
+
69
+ int firstValid = 0;
70
+ for(; firstValid < array.size(); ++firstValid)
71
+ if(array[firstValid] != indexFromCharacter(' '))
72
+ break;
73
+ array = array.mid(firstValid);
74
+ }
75
+
76
+ using namespace rpp;
77
+
78
+ pp_frame::pp_frame(pp_macro* __expandingMacro, const QList<pp_actual>& __actuals)
79
+ : depth(0)
80
+ , expandingMacro(__expandingMacro)
81
+ , actuals(__actuals)
82
+ {
83
+ }
84
+
85
+ pp_actual pp_macro_expander::resolve_formal(IndexedString name, Stream& input)
86
+ {
87
+ if (!m_frame)
88
+ return pp_actual();
89
+
90
+ Q_ASSERT(m_frame->expandingMacro != 0);
91
+
92
+ const QVector<IndexedString>& formals = m_frame->expandingMacro->formals;
93
+ uint formalsSize = formals.size();
94
+
95
+ if(name.isEmpty()) {
96
+ Problem *problem = new Problem;
97
+ problem->file = m_engine->currentFileNameString();
98
+ problem->position = input.originalInputPosition();
99
+ problem->description = "Macro error";
100
+ m_engine->problemEncountered(problem);
101
+ return pp_actual();
102
+ }
103
+
104
+ for (uint index = 0; index < formalsSize; ++index) {
105
+ if (name.index() == formals[index].index()) {
106
+ if (index < (uint)m_frame->actuals.size()) {
107
+ return m_frame->actuals[index];
108
+ }
109
+ else {
110
+ Problem *problem = new Problem;
111
+ problem->file = m_engine->currentFileNameString();
112
+ problem->position = input.originalInputPosition();
113
+ problem->description = QString("Call to macro %1 missing argument number %2").arg(name.str()).arg(index);
114
+ problem->explanation = QString("Formals: %1").arg(joinIndexVector(formals, ", "));
115
+ m_engine->problemEncountered(problem);
116
+ }
117
+ }
118
+ }
119
+
120
+ return pp_actual();
121
+ }
122
+
123
+ pp_macro_expander::pp_macro_expander(pp* engine, pp_frame* frame, bool inHeaderSection)
124
+ : m_engine(engine)
125
+ , m_frame(frame)
126
+ , m_in_header_section(inHeaderSection)
127
+ , m_search_significant_content(false)
128
+ , m_found_significant_content(false)
129
+ {
130
+ if(m_in_header_section)
131
+ m_search_significant_content = true; //Find the end of the header section
132
+ }
133
+
134
+ //A header-section ends when the first non-directive and non-comment occurs
135
+ #define check_header_section \
136
+ if( m_search_significant_content ) \
137
+ { \
138
+ \
139
+ if(m_in_header_section) { \
140
+ m_in_header_section = false; \
141
+ m_engine->preprocessor()->headerSectionEnded(input); \
142
+ } \
143
+ m_found_significant_content = true; \
144
+ m_search_significant_content = false; \
145
+ if( input.atEnd() ) \
146
+ continue; \
147
+ } \
148
+
149
+ struct EnableMacroExpansion {
150
+ EnableMacroExpansion(Stream& _input, const SimpleCursor& expansionPosition) : input(_input), hadMacroExpansion(_input.macroExpansion().isValid()) {
151
+
152
+ if(!hadMacroExpansion)
153
+ _input.setMacroExpansion(expansionPosition);
154
+ }
155
+ ~EnableMacroExpansion() {
156
+ if(!hadMacroExpansion)
157
+ input.setMacroExpansion(SimpleCursor::invalid());
158
+ }
159
+ Stream& input;
160
+ bool hadMacroExpansion;
161
+ };
162
+
163
+ IndexedString definedIndex = IndexedString("defined");
164
+ IndexedString lineIndex = IndexedString("__LINE__");
165
+ IndexedString fileIndex = IndexedString("__FILE__");
166
+ IndexedString dateIndex = IndexedString("__DATE__");
167
+ IndexedString timeIndex= IndexedString("__TIME__");
168
+
169
+ void pp_macro_expander::operator()(Stream& input, Stream& output)
170
+ {
171
+ skip_blanks(input, output);
172
+
173
+ while (!input.atEnd())
174
+ {
175
+ if (isComment(input))
176
+ {
177
+ skip_comment_or_divop(input, output, true);
178
+ }else{
179
+ if (input == '\n')
180
+ {
181
+ output << input;
182
+
183
+ skip_blanks(++input, output);
184
+
185
+ if (!input.atEnd() && input == '#')
186
+ break;
187
+ }
188
+ else if (input == '#')
189
+ {
190
+ Q_ASSERT(isCharacter(input.current()));
191
+ Q_ASSERT(IndexedString::fromIndex(input.current()).str() == "#");
192
+
193
+ ++input;
194
+
195
+ // search for the paste token
196
+ if(input == '#') {
197
+ ++input;
198
+ skip_blanks (input, devnull());
199
+
200
+ IndexedString previous = IndexedString::fromIndex(output.popLastOutput()); //Previous already has been expanded
201
+ while(output.offset() > 0 && isCharacter(previous.index()) && characterFromIndex(previous.index()) == ' ')
202
+ previous = IndexedString::fromIndex(output.popLastOutput());
203
+
204
+ IndexedString add = IndexedString::fromIndex(skip_identifier (input));
205
+
206
+ PreprocessedContents newExpanded;
207
+
208
+ {
209
+ //Expand "add", so it is eventually replaced by an actual
210
+ PreprocessedContents actualText;
211
+ actualText.append(add.index());
212
+
213
+ {
214
+ Stream as(&actualText);
215
+ pp_macro_expander expand_actual(m_engine, m_frame);
216
+ Stream nas(&newExpanded);
217
+ expand_actual(as, nas);
218
+ }
219
+ }
220
+
221
+ if(!newExpanded.isEmpty()) {
222
+ IndexedString first = IndexedString::fromIndex(newExpanded.first());
223
+ if(!isCharacter(first.index()) || QChar(characterFromIndex(first.index())).isLetterOrNumber() || characterFromIndex(first.index()) == '_') {
224
+ //Merge the tokens
225
+ newExpanded.first() = IndexedString(previous.byteArray() + first.byteArray()).index();
226
+ }else{
227
+ //Cannot merge, prepend the previous text
228
+ newExpanded.prepend(previous.index());
229
+ }
230
+ }else{
231
+ newExpanded.append(previous.index());
232
+ }
233
+
234
+ //Now expand the merged text completely into the output.
235
+ pp_macro_expander final_expansion(m_engine, m_frame);
236
+ Stream nas(&newExpanded, output.currentOutputAnchor());
237
+ final_expansion(nas, output);
238
+ continue;
239
+ }
240
+
241
+ skip_blanks(input, output);
242
+
243
+ IndexedString identifier = IndexedString::fromIndex( skip_identifier(input) );
244
+
245
+ Anchor inputPosition = input.inputPosition();
246
+ SimpleCursor originalInputPosition = input.originalInputPosition();
247
+ PreprocessedContents formal = resolve_formal(identifier, input).mergeText();
248
+
249
+ //Escape so we don't break on '"'
250
+ for(int a = formal.count()-1; a >= 0; --a) {
251
+ if(formal[a] == indexFromCharacter('\"') || formal[a] == indexFromCharacter('\\'))
252
+ formal.insert(a, indexFromCharacter('\\'));
253
+ else if(formal[a] == indexFromCharacter('\n')) {
254
+ //Replace newlines with "\n"
255
+ formal[a] = indexFromCharacter('n');
256
+ formal.insert(a, indexFromCharacter('\\'));
257
+ }
258
+
259
+ }
260
+
261
+ Stream is(&formal, inputPosition);
262
+ is.setOriginalInputPosition(originalInputPosition);
263
+ skip_whitespaces(is, devnull());
264
+
265
+ output << '\"';
266
+
267
+ while (!is.atEnd()) {
268
+ if (input == '"') {
269
+ output << '\\' << is;
270
+
271
+ } else if (input == '\n') {
272
+ output << '"' << is << '"';
273
+
274
+ } else {
275
+ output << is;
276
+ }
277
+
278
+ skip_whitespaces(++is, output);
279
+ }
280
+
281
+ output << '\"';
282
+ }
283
+ else if (input == '\"')
284
+ {
285
+ check_header_section
286
+
287
+ skip_string_literal(input, output);
288
+ }
289
+ else if (input == '\'')
290
+ {
291
+ check_header_section
292
+
293
+ skip_char_literal(input, output);
294
+ }
295
+ else if (isSpace(input.current()))
296
+ {
297
+ do {
298
+ if (input == '\n' || !isSpace(input.current()))
299
+ break;
300
+
301
+ output << input;
302
+
303
+ } while (!(++input).atEnd());
304
+ }
305
+ else if (isNumber(input.current()))
306
+ {
307
+ check_header_section
308
+
309
+ skip_number (input, output);
310
+ }
311
+ else if (isLetter(input.current()) || input == '_' || !isCharacter(input.current()))
312
+ {
313
+ check_header_section
314
+
315
+ Anchor inputPosition = input.inputPosition();
316
+ IndexedString name = IndexedString::fromIndex(skip_identifier (input));
317
+
318
+ Anchor inputPosition2 = input.inputPosition();
319
+ pp_actual actual = resolve_formal(name, input);
320
+ if (actual.isValid()) {
321
+ Q_ASSERT(actual.text.size() == actual.inputPosition.size());
322
+
323
+ QList<PreprocessedContents>::const_iterator textIt = actual.text.constBegin();
324
+ QList<Anchor>::const_iterator cursorIt = actual.inputPosition.constBegin();
325
+
326
+ for( ; textIt != actual.text.constEnd(); ++textIt, ++cursorIt )
327
+ {
328
+ output.appendString(*cursorIt, *textIt);
329
+ }
330
+ output << ' '; //Insert a whitespace to omit implicit token merging
331
+ output.mark(input.inputPosition());
332
+
333
+ if(actual.text.isEmpty()) {
334
+ int start = input.offset();
335
+
336
+ skip_blanks(input, devnull());
337
+ //Omit paste tokens behind empty used actuals, else we will merge with the previous text
338
+ if(input == '#' && (++input) == '#') {
339
+ ++input;
340
+ //We have skipped a paste token
341
+ }else{
342
+ input.seek(start);
343
+ }
344
+ }
345
+
346
+ continue;
347
+ }
348
+
349
+ // TODO handle inbuilt "defined" etc functions
350
+
351
+ pp_macro* macro = m_engine->environment()->retrieveMacro(name, false);
352
+
353
+ if (!macro || !macro->defined || macro->hidden || macro->function_like || m_engine->hideNextMacro())
354
+ {
355
+ m_engine->setHideNextMacro(name == definedIndex);
356
+
357
+ if (name == lineIndex)
358
+ output.appendString(inputPosition, convertFromByteArray(QString::number(input.inputPosition().line).toUtf8()));
359
+ else if (name == fileIndex)
360
+ output.appendString(inputPosition, convertFromByteArray(QString("\"%1\"").arg(m_engine->currentFileNameString()).toUtf8()));
361
+ else if (name == dateIndex)
362
+ output.appendString(inputPosition, convertFromByteArray(QDate::currentDate().toString("MMM dd yyyy").toUtf8()));
363
+ else if (name == timeIndex)
364
+ output.appendString(inputPosition, convertFromByteArray(QTime::currentTime().toString("hh:mm:ss").toUtf8()));
365
+ else
366
+ output.appendString(inputPosition, name);
367
+ continue;
368
+ }
369
+
370
+ EnableMacroExpansion enable(output, input.inputPosition()); //Configure the output-stream so it marks all stored input-positions as transformed through a macro
371
+
372
+ if (macro->definition.size()) {
373
+ macro->hidden = true;
374
+
375
+ pp_macro_expander expand_macro(m_engine);
376
+ ///@todo UGLY conversion
377
+ Stream ms((uint*)macro->definition.constData(), macro->definition.size(), Anchor(input.inputPosition(), true));
378
+ ms.setOriginalInputPosition(input.originalInputPosition());
379
+ PreprocessedContents expanded;
380
+ {
381
+ Stream es(&expanded);
382
+ expand_macro(ms, es);
383
+ }
384
+
385
+ if (!expanded.isEmpty())
386
+ {
387
+ Stream es(&expanded, Anchor(input.inputPosition(), true));
388
+ es.setOriginalInputPosition(input.originalInputPosition());
389
+ skip_whitespaces(es, devnull());
390
+ IndexedString identifier = IndexedString::fromIndex( skip_identifier(es) );
391
+
392
+ output.appendString(Anchor(input.inputPosition(), true), expanded);
393
+ output << ' '; //Prevent implicit token merging
394
+ }
395
+
396
+ macro->hidden = false;
397
+ }
398
+ }else if(input == '(') {
399
+
400
+ //Eventually execute a function-macro
401
+
402
+ IndexedString previous = IndexedString::fromIndex(indexFromCharacter(' ')); //Previous already has been expanded
403
+ uint stepsBack = 0;
404
+ while(isCharacter(previous.index()) && characterFromIndex(previous.index()) == ' ' && output.peekLastOutput(stepsBack)) {
405
+ previous = IndexedString::fromIndex(output.peekLastOutput(stepsBack));
406
+ ++stepsBack;
407
+ }
408
+
409
+ pp_macro* macro = m_engine->environment()->retrieveMacro(previous, false);
410
+
411
+ if(!macro || !macro->function_like || !macro->defined || macro->hidden) {
412
+ output << input;
413
+ ++input;
414
+ continue;
415
+ }
416
+
417
+ //In case expansion fails, we can skip back to this position
418
+ int openingPosition = input.offset();
419
+ Anchor openingPositionCursor = input.inputPosition();
420
+
421
+ QList<pp_actual> actuals;
422
+ ++input; // skip '('
423
+
424
+ pp_macro_expander expand_actual(m_engine, m_frame);
425
+
426
+ {
427
+ PreprocessedContents actualText;
428
+ skip_whitespaces(input, devnull());
429
+ Anchor actualStart = input.inputPosition();
430
+ {
431
+ Stream as(&actualText);
432
+ skip_argument_variadics(actuals, macro, input, as);
433
+ }
434
+ trim(actualText);
435
+
436
+ pp_actual newActual;
437
+ {
438
+ PreprocessedContents newActualText;
439
+ Stream as(&actualText, actualStart);
440
+ as.setOriginalInputPosition(input.originalInputPosition());
441
+
442
+ rpp::LocationTable table;
443
+ table.anchor(0, actualStart, 0);
444
+ Stream nas(&newActualText, actualStart, &table);
445
+ expand_actual(as, nas);
446
+
447
+ table.splitByAnchors(newActualText, actualStart, newActual.text, newActual.inputPosition);
448
+ }
449
+ newActual.forceValid = true;
450
+
451
+ actuals.append(newActual);
452
+ }
453
+
454
+ // TODO: why separate from the above?
455
+ while (!input.atEnd() && input == ',')
456
+ {
457
+ ++input; // skip ','
458
+
459
+ {
460
+ PreprocessedContents actualText;
461
+ skip_whitespaces(input, devnull());
462
+ Anchor actualStart = input.inputPosition();
463
+ {
464
+ Stream as(&actualText);
465
+ skip_argument_variadics(actuals, macro, input, as);
466
+ }
467
+ trim(actualText);
468
+
469
+ pp_actual newActual;
470
+ {
471
+ PreprocessedContents newActualText;
472
+ Stream as(&actualText, actualStart);
473
+ as.setOriginalInputPosition(input.originalInputPosition());
474
+
475
+ PreprocessedContents actualText;
476
+ rpp::LocationTable table;
477
+ table.anchor(0, actualStart, 0);
478
+ Stream nas(&newActualText, actualStart, &table);
479
+ expand_actual(as, nas);
480
+
481
+ table.splitByAnchors(newActualText, actualStart, newActual.text, newActual.inputPosition);
482
+ }
483
+ newActual.forceValid = true;
484
+ actuals.append(newActual);
485
+ }
486
+ }
487
+
488
+ if( input != ')' ) {
489
+ //Failed to expand the macro. Output the macro name and continue normal
490
+ //processing behind it.(Code completion depends on this behavior when expanding
491
+ //incomplete input-lines)
492
+ input.seek(openingPosition);
493
+ input.setInputPosition(openingPositionCursor);
494
+ //Move one character into the output, so we don't get an endless loop
495
+ output << input;
496
+ ++input;
497
+ continue;
498
+ }
499
+
500
+ //Remove the name of the called macro
501
+ while(stepsBack) {
502
+ --stepsBack;
503
+ output.popLastOutput();
504
+ }
505
+
506
+ //Q_ASSERT(!input.atEnd() && input == ')');
507
+
508
+ ++input; // skip ')'
509
+
510
+ #if 0 // ### enable me
511
+ assert ((macro->variadics && macro->formals.size () >= actuals.size ())
512
+ || macro->formals.size() == actuals.size());
513
+ #endif
514
+ EnableMacroExpansion enable(output, input.inputPosition()); //Configure the output-stream so it marks all stored input-positions as transformed through a macro
515
+
516
+ pp_frame frame(macro, actuals);
517
+ if(m_frame)
518
+ frame.depth = m_frame->depth + 1;
519
+
520
+ if(frame.depth >= maxMacroExpansionDepth)
521
+ {
522
+ qDebug() << "reached maximum macro-expansion depth while expanding" << macro->name.str();
523
+ output << input;
524
+ ++input;
525
+ }else{
526
+ pp_macro_expander expand_macro(m_engine, &frame);
527
+ macro->hidden = true;
528
+ ///@todo UGLY conversion
529
+ Stream ms((uint*)macro->definition.constData(), macro->definition.size(), Anchor(input.inputPosition(), true));
530
+ ms.setOriginalInputPosition(input.originalInputPosition());
531
+ expand_macro(ms, output);
532
+ output << ' '; //Prevent implicit token merging
533
+ macro->hidden = false;
534
+ }
535
+ } else {
536
+ output << input;
537
+ ++input;
538
+ }
539
+ }
540
+
541
+ }
542
+ }
543
+
544
+ void pp_macro_expander::skip_argument_variadics (const QList<pp_actual>& __actuals, pp_macro *__macro, Stream& input, Stream& output)
545
+ {
546
+ int first;
547
+
548
+ do {
549
+ first = input.offset();
550
+ skip_argument(input, output);
551
+
552
+ } while ( __macro->variadics
553
+ && first != input.offset()
554
+ && !input.atEnd()
555
+ && input == '.'
556
+ && (__actuals.size() + 1) == (int)__macro->formals.size());
557
+ }
558
+