scarpe 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (347) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +4 -0
  3. data/.yardopts +12 -0
  4. data/CHANGELOG.md +16 -2
  5. data/Gemfile +3 -0
  6. data/Gemfile.lock +116 -0
  7. data/README.md +53 -30
  8. data/Rakefile +13 -1
  9. data/docs/yard/catscradle.md +44 -0
  10. data/docs/yard/template/default/fulldoc/html/setup.rb +13 -0
  11. data/docs/yard/template/default/layout/html/setup.rb +9 -0
  12. data/examples/animate.rb +20 -0
  13. data/examples/arrow.rb +10 -0
  14. data/examples/background_with_image.rb +16 -0
  15. data/examples/bloopsaphone/working/bronx_army_knife.rb +66 -0
  16. data/examples/bloopsaphone/working/morning_serenity.rb +21 -0
  17. data/examples/bloopsaphone/working/simpsons_theme_song_by_why.rb +6 -4
  18. data/examples/btn_tooltip.rb +7 -0
  19. data/examples/button_go_away.rb +1 -1
  20. data/examples/button_style_changed.rb +7 -0
  21. data/examples/button_styles_default.rb +6 -0
  22. data/examples/check.rb +18 -0
  23. data/examples/clear_and_append.rb +24 -0
  24. data/examples/download_and_show_image.rb +28 -0
  25. data/examples/edit_box.rb +3 -5
  26. data/examples/fonts.rb +2 -2
  27. data/examples/gen.rb +8 -8
  28. data/examples/get_headers.rb +10 -0
  29. data/examples/highlander.rb +4 -2
  30. data/examples/legacy/README.md +6 -0
  31. data/examples/legacy/not_checked/shoes-contrib/basic/shoes-notes.rb +1 -1
  32. data/examples/legacy/not_checked/simple/anim-shapes.rb +1 -1
  33. data/examples/legacy/not_checked/speedometer_app.rb +55 -0
  34. data/examples/legacy/working/simple/image-icon.rb +3 -0
  35. data/examples/legacy/{not_checked → working}/simple/image.rb +1 -1
  36. data/examples/link.rb +2 -2
  37. data/examples/list_box_choose.rb +17 -0
  38. data/examples/local_assets/local_file_server.rb +82 -0
  39. data/examples/local_assets/sample.gif +0 -0
  40. data/examples/local_assets/sample.mp4 +0 -0
  41. data/examples/local_fonts.rb +4 -0
  42. data/examples/local_images.rb +3 -0
  43. data/examples/motion_events.rb +20 -0
  44. data/examples/para/para_text.rb +14 -0
  45. data/examples/parse_xl_funnies.rb +58 -0
  46. data/examples/progress.rb +31 -0
  47. data/examples/radio/radio.rb +16 -0
  48. data/examples/radio/radio_groups.rb +18 -0
  49. data/examples/radio/radio_same_slot.rb +6 -0
  50. data/examples/rect.rb +4 -0
  51. data/examples/rotate_shapes.rb +17 -0
  52. data/examples/ruby_racer.rb +13 -15
  53. data/examples/selfitude.rb +18 -0
  54. data/examples/shapes/shapes_fill.rb +4 -3
  55. data/examples/shoes_school.rb +2 -4
  56. data/examples/show_hide.rb +6 -0
  57. data/examples/simpler-menu.rb +21 -0
  58. data/examples/skip_ci/change_my_audio_source.rb +21 -0
  59. data/examples/skip_ci/guitar_fretboard.rb +137 -0
  60. data/examples/video.rb +10 -0
  61. data/exe/scarpe +43 -66
  62. data/fonts/Pacifico.ttf +0 -0
  63. data/lacci/Gemfile +24 -0
  64. data/lacci/Gemfile.lock +79 -0
  65. data/lacci/Rakefile +12 -0
  66. data/lacci/lacci.gemspec +37 -0
  67. data/lacci/lib/lacci/scarpe_cli.rb +71 -0
  68. data/lacci/lib/lacci/scarpe_core.rb +22 -0
  69. data/lacci/lib/lacci/version.rb +13 -0
  70. data/lacci/lib/scarpe/niente/app.rb +23 -0
  71. data/lacci/lib/scarpe/niente/display_service.rb +62 -0
  72. data/lacci/lib/scarpe/niente/drawable.rb +57 -0
  73. data/lacci/lib/scarpe/niente/logger.rb +29 -0
  74. data/lacci/lib/scarpe/niente/shoes_spec.rb +87 -0
  75. data/lacci/lib/scarpe/niente.rb +20 -0
  76. data/lacci/lib/shoes/app.rb +309 -0
  77. data/{lib/scarpe → lacci/lib/shoes}/background.rb +2 -2
  78. data/{lib/scarpe → lacci/lib/shoes}/border.rb +2 -2
  79. data/lacci/lib/shoes/builtins.rb +63 -0
  80. data/lacci/lib/shoes/changelog.rb +52 -0
  81. data/{lib/scarpe → lacci/lib/shoes}/colors.rb +3 -1
  82. data/lacci/lib/shoes/constants.rb +47 -0
  83. data/{lib/scarpe → lacci/lib/shoes}/display_service.rb +71 -53
  84. data/lacci/lib/shoes/download.rb +123 -0
  85. data/lacci/lib/shoes/drawable.rb +380 -0
  86. data/lacci/lib/shoes/drawables/arc.rb +49 -0
  87. data/lacci/lib/shoes/drawables/arrow.rb +41 -0
  88. data/lacci/lib/shoes/drawables/button.rb +73 -0
  89. data/lacci/lib/shoes/drawables/check.rb +29 -0
  90. data/lacci/lib/shoes/drawables/document_root.rb +20 -0
  91. data/lacci/lib/shoes/drawables/edit_box.rb +29 -0
  92. data/{lib/scarpe → lacci/lib/shoes/drawables}/edit_line.rb +6 -6
  93. data/lacci/lib/shoes/drawables/flow.rb +22 -0
  94. data/{lib/scarpe → lacci/lib/shoes/drawables}/image.rb +7 -11
  95. data/lacci/lib/shoes/drawables/line.rb +20 -0
  96. data/lacci/lib/shoes/drawables/link.rb +34 -0
  97. data/lacci/lib/shoes/drawables/list_box.rb +56 -0
  98. data/lacci/lib/shoes/drawables/para.rb +118 -0
  99. data/lacci/lib/shoes/drawables/progress.rb +14 -0
  100. data/lacci/lib/shoes/drawables/radio.rb +33 -0
  101. data/lacci/lib/shoes/drawables/rect.rb +17 -0
  102. data/lacci/lib/shoes/drawables/shape.rb +36 -0
  103. data/lacci/lib/shoes/drawables/slot.rb +87 -0
  104. data/{lib/scarpe → lacci/lib/shoes/drawables}/span.rb +8 -7
  105. data/lacci/lib/shoes/drawables/stack.rb +26 -0
  106. data/lacci/lib/shoes/drawables/star.rb +50 -0
  107. data/lacci/lib/shoes/drawables/subscription_item.rb +93 -0
  108. data/lacci/lib/shoes/drawables/text_drawable.rb +63 -0
  109. data/lacci/lib/shoes/drawables/video.rb +16 -0
  110. data/lacci/lib/shoes/drawables/widget.rb +69 -0
  111. data/lacci/lib/shoes/drawables.rb +31 -0
  112. data/lacci/lib/shoes/errors.rb +28 -0
  113. data/lacci/lib/shoes/log.rb +71 -0
  114. data/lacci/lib/shoes/ruby_extensions.rb +15 -0
  115. data/lacci/lib/shoes/spacing.rb +9 -0
  116. data/lacci/lib/shoes-spec.rb +93 -0
  117. data/lacci/lib/shoes.rb +147 -0
  118. data/lacci/test/test_colors.rb +39 -0
  119. data/lacci/test/test_helper.rb +63 -0
  120. data/lacci/test/test_lacci.rb +18 -0
  121. data/lacci/test/test_shoes_errors.rb +49 -0
  122. data/lib/scarpe/cats_cradle.rb +271 -0
  123. data/lib/scarpe/errors.rb +77 -0
  124. data/lib/scarpe/evented_assertions.rb +121 -0
  125. data/lib/scarpe/shoes_spec.rb +181 -0
  126. data/lib/scarpe/version.rb +2 -2
  127. data/lib/scarpe/wv/app.rb +45 -23
  128. data/lib/scarpe/wv/arc.rb +4 -48
  129. data/lib/scarpe/wv/arrow.rb +9 -0
  130. data/lib/scarpe/wv/button.rb +7 -33
  131. data/lib/scarpe/wv/check.rb +27 -0
  132. data/lib/scarpe/wv/control_interface.rb +32 -40
  133. data/lib/scarpe/wv/document_root.rb +66 -31
  134. data/lib/scarpe/wv/drawable.rb +273 -0
  135. data/lib/scarpe/wv/edit_box.rb +4 -19
  136. data/lib/scarpe/wv/edit_line.rb +4 -18
  137. data/lib/scarpe/wv/flow.rb +2 -28
  138. data/lib/scarpe/wv/image.rb +10 -25
  139. data/lib/scarpe/wv/line.rb +3 -28
  140. data/lib/scarpe/wv/link.rb +3 -15
  141. data/lib/scarpe/wv/list_box.rb +6 -29
  142. data/lib/scarpe/wv/para.rb +11 -28
  143. data/lib/scarpe/wv/progress.rb +19 -0
  144. data/lib/scarpe/wv/radio.rb +33 -0
  145. data/lib/scarpe/wv/rect.rb +13 -0
  146. data/lib/scarpe/wv/shape.rb +41 -10
  147. data/lib/scarpe/wv/slot.rb +64 -0
  148. data/lib/scarpe/wv/span.rb +3 -25
  149. data/lib/scarpe/wv/stack.rb +2 -38
  150. data/lib/scarpe/wv/star.rb +3 -54
  151. data/lib/scarpe/wv/subscription_item.rb +84 -0
  152. data/lib/scarpe/wv/text_drawable.rb +32 -0
  153. data/lib/scarpe/wv/video.rb +34 -0
  154. data/lib/scarpe/wv/web_wrangler.rb +449 -299
  155. data/lib/scarpe/wv/webview_local_display.rb +63 -26
  156. data/lib/scarpe/wv/webview_relay_display.rb +24 -125
  157. data/lib/scarpe/wv/webview_relay_util.rb +140 -0
  158. data/lib/scarpe/wv/wv_display_worker.rb +19 -6
  159. data/lib/scarpe/wv.rb +76 -14
  160. data/lib/scarpe/wv_local.rb +1 -1
  161. data/lib/scarpe/wv_relay.rb +1 -1
  162. data/lib/scarpe.rb +4 -32
  163. data/logger/debug_web_wrangler.json +1 -1
  164. data/logger/scarpe_wv_test.json +1 -1
  165. data/scarpe-components/.gitignore +1 -0
  166. data/scarpe-components/Gemfile +22 -0
  167. data/scarpe-components/Gemfile.lock +86 -0
  168. data/scarpe-components/README.md +35 -0
  169. data/scarpe-components/Rakefile +12 -0
  170. data/scarpe-components/lib/scarpe/components/base64.rb +25 -0
  171. data/scarpe-components/lib/scarpe/components/calzini/alert.rb +49 -0
  172. data/scarpe-components/lib/scarpe/components/calzini/art_widgets.rb +203 -0
  173. data/scarpe-components/lib/scarpe/components/calzini/button.rb +39 -0
  174. data/scarpe-components/lib/scarpe/components/calzini/misc.rb +146 -0
  175. data/scarpe-components/lib/scarpe/components/calzini/para.rb +35 -0
  176. data/scarpe-components/lib/scarpe/components/calzini/slots.rb +155 -0
  177. data/scarpe-components/lib/scarpe/components/calzini/text_widgets.rb +65 -0
  178. data/scarpe-components/lib/scarpe/components/calzini.rb +149 -0
  179. data/scarpe-components/lib/scarpe/components/errors.rb +20 -0
  180. data/scarpe-components/lib/scarpe/components/file_helpers.rb +66 -0
  181. data/scarpe-components/lib/scarpe/components/html.rb +131 -0
  182. data/scarpe-components/lib/scarpe/components/minitest_export_reporter.rb +75 -0
  183. data/scarpe-components/lib/scarpe/components/minitest_import_runnable.rb +98 -0
  184. data/scarpe-components/lib/scarpe/components/minitest_result.rb +86 -0
  185. data/scarpe-components/lib/scarpe/components/modular_logger.rb +113 -0
  186. data/scarpe-components/lib/scarpe/components/print_logger.rb +47 -0
  187. data/{lib/scarpe → scarpe-components/lib/scarpe/components}/promises.rb +115 -48
  188. data/scarpe-components/lib/scarpe/components/segmented_file_loader.rb +189 -0
  189. data/scarpe-components/lib/scarpe/components/string_helpers.rb +10 -0
  190. data/scarpe-components/lib/scarpe/components/tiranti.rb +225 -0
  191. data/scarpe-components/lib/scarpe/components/unit_test_helpers.rb +257 -0
  192. data/scarpe-components/lib/scarpe/components/version.rb +7 -0
  193. data/scarpe-components/scarpe-components.gemspec +38 -0
  194. data/scarpe-components/test/calzini/test_calzini_alert.rb +30 -0
  195. data/scarpe-components/test/calzini/test_calzini_art_drawables.rb +105 -0
  196. data/scarpe-components/test/calzini/test_calzini_button.rb +52 -0
  197. data/scarpe-components/test/calzini/test_calzini_misc.rb +115 -0
  198. data/scarpe-components/test/calzini/test_calzini_para.rb +37 -0
  199. data/scarpe-components/test/calzini/test_calzini_slots.rb +130 -0
  200. data/scarpe-components/test/calzini/test_calzini_text_drawables.rb +41 -0
  201. data/scarpe-components/test/mtr_data/exception.json +1 -0
  202. data/scarpe-components/test/mtr_data/fail_with_message.json +1 -0
  203. data/scarpe-components/test/mtr_data/skipped_no_message.json +1 -0
  204. data/scarpe-components/test/mtr_data/skipped_w_msg.json +1 -0
  205. data/scarpe-components/test/mtr_data/succeed_2_asserts.json +1 -0
  206. data/scarpe-components/test/test_components.rb +9 -0
  207. data/scarpe-components/test/test_dimensions.rb +26 -0
  208. data/scarpe-components/test/test_helper.rb +43 -0
  209. data/scarpe-components/test/test_html.rb +65 -0
  210. data/scarpe-components/test/test_minitest_result.rb +61 -0
  211. data/scarpe-components/test/test_promises.rb +261 -0
  212. data/scarpe-components/test/test_segmented_app_files.rb +184 -0
  213. data/scarpegen.rb +14 -14
  214. data/sig/scarpe.rbs +1 -1
  215. data/{lib/scarpe → spikes}/glibui/widget.rb +2 -2
  216. data/{lib/scarpe → spikes}/glibui.rb +1 -1
  217. data/templates/basic_class_template.erb +13 -14
  218. data/templates/class_template_with_event_bind.erb +4 -4
  219. data/templates/class_template_with_shapes.erb +8 -17
  220. data/templates/example_template.erb +1 -1
  221. data/templates/module_template.erb +4 -4
  222. data/templates/webview_template.erb +3 -5
  223. metadata +236 -145
  224. data/examples/fill.rb +0 -25
  225. data/examples/legacy/not_checked/shoes-contrib/basic/class-book.yaml +0 -387
  226. data/examples/legacy/not_checked/shoes-contrib/elements/image-icon.rb +0 -3
  227. data/examples/legacy/not_checked/shoes-contrib/good/good-clock.rb +0 -51
  228. data/examples/legacy/not_checked/shoes-contrib/good/good-follow.rb +0 -26
  229. data/examples/legacy/not_checked/shoes-contrib/good/good-reminder.rb +0 -174
  230. data/examples/legacy/not_checked/shoes-contrib/good/good-vjot.rb +0 -56
  231. data/examples/legacy/not_checked/shoes-contrib/simple/simple-timer.rb +0 -13
  232. data/examples/legacy/not_checked/shoes-dep-samples/good-clock.rb +0 -51
  233. data/examples/legacy/not_checked/shoes-dep-samples/good-follow.rb +0 -26
  234. data/examples/legacy/not_checked/shoes-dep-samples/good-reminder.rb +0 -174
  235. data/examples/legacy/not_checked/shoes-dep-samples/good-vjot.rb +0 -56
  236. data/examples/legacy/not_checked/shoes-dep-samples/simple-accordion.rb +0 -75
  237. data/examples/legacy/not_checked/shoes-dep-samples/simple-anim-shapes.rb +0 -17
  238. data/examples/legacy/not_checked/shoes-dep-samples/simple-anim-text.rb +0 -13
  239. data/examples/legacy/not_checked/shoes-dep-samples/simple-arc.rb +0 -23
  240. data/examples/legacy/not_checked/shoes-dep-samples/simple-bounce.rb +0 -24
  241. data/examples/legacy/not_checked/shoes-dep-samples/simple-calc.rb +0 -70
  242. data/examples/legacy/not_checked/shoes-dep-samples/simple-chipmunk.rb +0 -26
  243. data/examples/legacy/not_checked/shoes-dep-samples/simple-control-sizes.rb +0 -24
  244. data/examples/legacy/not_checked/shoes-dep-samples/simple-curve.rb +0 -26
  245. data/examples/legacy/not_checked/shoes-dep-samples/simple-dialogs.rb +0 -29
  246. data/examples/legacy/not_checked/shoes-dep-samples/simple-draw.rb +0 -13
  247. data/examples/legacy/not_checked/shoes-dep-samples/simple-editor.rb +0 -28
  248. data/examples/legacy/not_checked/shoes-dep-samples/simple-form.rb +0 -28
  249. data/examples/legacy/not_checked/shoes-dep-samples/simple-form.shy +0 -0
  250. data/examples/legacy/not_checked/shoes-dep-samples/simple-mask.rb +0 -21
  251. data/examples/legacy/not_checked/shoes-dep-samples/simple-menu.rb +0 -31
  252. data/examples/legacy/not_checked/shoes-dep-samples/simple-menu1.rb +0 -35
  253. data/examples/legacy/not_checked/shoes-dep-samples/simple-rubygems.rb +0 -29
  254. data/examples/legacy/not_checked/shoes-dep-samples/simple-slide.rb +0 -45
  255. data/examples/legacy/not_checked/shoes-dep-samples/simple-sphere.rb +0 -28
  256. data/examples/legacy/not_checked/shoes-dep-samples/simple-sqlite3.rb +0 -13
  257. data/examples/legacy/not_checked/shoes-dep-samples/simple-timer.rb +0 -13
  258. data/examples/legacy/not_checked/shoes-dep-samples/simple-video.rb +0 -13
  259. data/examples/legacy/not_checked/simple/anim-text.rb +0 -13
  260. data/examples/legacy/not_checked/simple/arc.rb +0 -23
  261. data/examples/legacy/not_checked/simple/bounce.rb +0 -24
  262. data/examples/legacy/not_checked/simple/chipmunk.rb +0 -26
  263. data/examples/legacy/not_checked/simple/curve.rb +0 -26
  264. data/examples/legacy/not_checked/simple/dialogs.rb +0 -29
  265. data/examples/legacy/not_checked/simple/downloader.rb +0 -40
  266. data/examples/legacy/not_checked/simple/draw.rb +0 -13
  267. data/examples/legacy/not_checked/simple/mask.rb +0 -21
  268. data/examples/legacy/not_checked/simple/slide.rb +0 -45
  269. data/examples/legacy/not_checked/simple/sphere.rb +0 -28
  270. data/lib/constants.rb +0 -5
  271. data/lib/scarpe/alert.rb +0 -19
  272. data/lib/scarpe/app.rb +0 -78
  273. data/lib/scarpe/arc.rb +0 -49
  274. data/lib/scarpe/button.rb +0 -35
  275. data/lib/scarpe/document_root.rb +0 -20
  276. data/lib/scarpe/edit_box.rb +0 -24
  277. data/lib/scarpe/fill.rb +0 -23
  278. data/lib/scarpe/flow.rb +0 -19
  279. data/lib/scarpe/line.rb +0 -25
  280. data/lib/scarpe/link.rb +0 -25
  281. data/lib/scarpe/list_box.rb +0 -25
  282. data/lib/scarpe/logger.rb +0 -155
  283. data/lib/scarpe/para.rb +0 -90
  284. data/lib/scarpe/shape.rb +0 -19
  285. data/lib/scarpe/spacing.rb +0 -9
  286. data/lib/scarpe/stack.rb +0 -70
  287. data/lib/scarpe/star.rb +0 -47
  288. data/lib/scarpe/text_widget.rb +0 -42
  289. data/lib/scarpe/unit_test_helpers.rb +0 -163
  290. data/lib/scarpe/widget.rb +0 -198
  291. data/lib/scarpe/widgets.rb +0 -30
  292. data/lib/scarpe/wv/alert.rb +0 -65
  293. data/lib/scarpe/wv/background.rb +0 -18
  294. data/lib/scarpe/wv/border.rb +0 -22
  295. data/lib/scarpe/wv/control_interface_test.rb +0 -253
  296. data/lib/scarpe/wv/dimensions.rb +0 -22
  297. data/lib/scarpe/wv/fill.rb +0 -30
  298. data/lib/scarpe/wv/html.rb +0 -107
  299. data/lib/scarpe/wv/shape_helper.rb +0 -44
  300. data/lib/scarpe/wv/spacing.rb +0 -41
  301. data/lib/scarpe/wv/text_widget.rb +0 -30
  302. data/lib/scarpe/wv/widget.rb +0 -181
  303. data/scarpe-0.2.0.gem +0 -0
  304. /data/examples/legacy/not_checked/{expert → shoes-contrib/basic}/definr.rb +0 -0
  305. /data/examples/legacy/not_checked/{expert → shoes-contrib/basic}/funnies.rb +0 -0
  306. /data/examples/legacy/not_checked/shoes-contrib/{elements → basic}/list_box-select-class.rb +0 -0
  307. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/basic-edit-box.rb +0 -0
  308. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/basic-fps.rb +0 -0
  309. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/border-cat.rb +0 -0
  310. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/check-mate.rb +0 -0
  311. /data/examples/legacy/{not_checked/shoes-contrib/manipulation → working/simple}/clear-slot.rb +0 -0
  312. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/clock.rb +0 -0
  313. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/gradient-shoes.rb +0 -0
  314. /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/list_box-shape-report.rb +0 -0
  315. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/list_box.rb +0 -0
  316. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/phat-button.rb +0 -0
  317. /data/examples/legacy/{not_checked/shoes-contrib → working}/simple/simple-calc.rb +0 -0
  318. /data/examples/legacy/{not_checked/shoes-contrib/position → working/simple}/stack-width.rb +0 -0
  319. /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/width-introspec.rb +0 -0
  320. /data/{lib/scarpe → spikes}/glibui/README.md +0 -0
  321. /data/{lib/scarpe → spikes}/glibui/alert.rb +0 -0
  322. /data/{lib/scarpe → spikes}/glibui/app.rb +0 -0
  323. /data/{lib/scarpe → spikes}/glibui/background.rb +0 -0
  324. /data/{lib/scarpe → spikes}/glibui/border.rb +0 -0
  325. /data/{lib/scarpe → spikes}/glibui/button.rb +0 -0
  326. /data/{lib/scarpe → spikes}/glibui/dimensions.rb +0 -0
  327. /data/{lib/scarpe → spikes}/glibui/document_root.rb +0 -0
  328. /data/{lib/scarpe → spikes}/glibui/edit_box.rb +0 -0
  329. /data/{lib/scarpe → spikes}/glibui/edit_line.rb +0 -0
  330. /data/{lib/scarpe → spikes}/glibui/flow.rb +0 -0
  331. /data/{lib/scarpe → spikes}/glibui/html.rb +0 -0
  332. /data/{lib/scarpe → spikes}/glibui/image.rb +0 -0
  333. /data/{lib/scarpe → spikes}/glibui/link.rb +0 -0
  334. /data/{lib/scarpe → spikes}/glibui/local_display.rb +0 -0
  335. /data/{lib/scarpe → spikes}/glibui/para.rb +0 -0
  336. /data/{lib/scarpe → spikes}/glibui/spacing.rb +0 -0
  337. /data/{lib/scarpe → spikes}/glibui/stack.rb +0 -0
  338. /data/{lib/scarpe → spikes}/glibui/text_widget.rb +0 -0
  339. /data/{lib/scarpe → spikes}/libui/alert.rb +0 -0
  340. /data/{lib/scarpe → spikes}/libui/button.rb +0 -0
  341. /data/{lib/scarpe → spikes}/libui/colors.rb +0 -0
  342. /data/{lib/scarpe → spikes}/libui/core.rb +0 -0
  343. /data/{lib/scarpe → spikes}/libui/flow.rb +0 -0
  344. /data/{lib/scarpe → spikes}/libui/libui.rb +0 -0
  345. /data/{lib/scarpe → spikes}/libui/notepad.md +0 -0
  346. /data/{lib/scarpe → spikes}/libui/para.rb +0 -0
  347. /data/{lib/scarpe → spikes}/libui/stack.rb +0 -0
@@ -0,0 +1,273 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Scarpe::Webview
4
+ # The Webview::Drawable parent class helps connect a Webview drawable with
5
+ # its Shoes equivalent, render itself to the Webview DOM, handle
6
+ # Javascript events and generally keep things working in Webview.
7
+ class Drawable < Shoes::Linkable
8
+ # This will pick up the log implementation from wv.rb
9
+ include Shoes::Log
10
+
11
+ class << self
12
+ # Return the corresponding Webview class for a particular Shoes class name
13
+ def display_class_for(scarpe_class_name)
14
+ scarpe_class = Shoes.const_get(scarpe_class_name)
15
+ unless scarpe_class.ancestors.include?(Shoes::Linkable)
16
+ raise Scarpe::InvalidClassError, "Scarpe Webview can only get display classes for Shoes " +
17
+ "linkable drawables, not #{scarpe_class_name.inspect}!"
18
+ end
19
+
20
+ klass = Scarpe::Webview.const_get(scarpe_class_name.split("::")[-1])
21
+ if klass.nil?
22
+ raise Scarpe::MissingClassError, "Couldn't find corresponding Scarpe Webview class for #{scarpe_class_name.inspect}!"
23
+ end
24
+
25
+ klass
26
+ end
27
+ end
28
+
29
+ # The Shoes ID corresponding to the Shoes drawable for this Webview drawable
30
+ attr_reader :shoes_linkable_id
31
+
32
+ # The Webview::Drawable parent of this drawable
33
+ attr_reader :parent
34
+
35
+ # An array of Webview::Drawable children (possibly empty) of this drawable
36
+ attr_reader :children
37
+
38
+ # Set instance variables for the Shoes styles of this drawable. Bind Shoes
39
+ # events for changes of parent drawable and changes of property values.
40
+ def initialize(properties)
41
+ log_init("Webview::Drawable")
42
+
43
+ @shoes_style_names = properties.keys.map(&:to_s) - ["shoes_linkable_id"]
44
+
45
+ # Call method, which looks up the parent
46
+ @shoes_linkable_id = properties["shoes_linkable_id"] || properties[:shoes_linkable_id]
47
+ unless @shoes_linkable_id
48
+ raise Scarpe::MissingAttributeError, "Could not find property shoes_linkable_id in #{properties.inspect}!"
49
+ end
50
+
51
+ # Set the Shoes styles as instance variables
52
+ properties.each do |k, v|
53
+ next if k == "shoes_linkable_id"
54
+
55
+ instance_variable_set("@" + k.to_s, v)
56
+ end
57
+
58
+ # Must call this before bind
59
+ super(linkable_id: @shoes_linkable_id)
60
+
61
+ bind_shoes_event(event_name: "parent", target: shoes_linkable_id) do |new_parent_id|
62
+ display_parent = DisplayService.instance.query_display_drawable_for(new_parent_id)
63
+ if @parent != display_parent
64
+ set_parent(display_parent)
65
+ end
66
+ end
67
+
68
+ # When Shoes drawables change properties, we get a change notification here
69
+ bind_shoes_event(event_name: "prop_change", target: shoes_linkable_id) do |prop_changes|
70
+ prop_changes.each do |k, v|
71
+ instance_variable_set("@" + k, v)
72
+ end
73
+ properties_changed(prop_changes)
74
+ end
75
+
76
+ bind_shoes_event(event_name: "destroy", target: shoes_linkable_id) do
77
+ destroy_self
78
+ end
79
+ end
80
+
81
+ def shoes_styles
82
+ p = {}
83
+ @shoes_style_names.each do |prop_name|
84
+ p[prop_name] = instance_variable_get("@#{prop_name}")
85
+ end
86
+ p
87
+ end
88
+
89
+ # Properties_changed will be called automatically when properties change.
90
+ # The drawable should delete any changes from the Hash that it knows how
91
+ # to incrementally handle, and pass the rest to super. If any changes
92
+ # go entirely un-handled, a full redraw will be scheduled.
93
+ # This exists to be overridden by children watching for changes.
94
+ #
95
+ # @param changes [Hash] a Hash of new values for properties that have changed
96
+ def properties_changed(changes)
97
+ # If a drawable does something really nonstandard with its html_id or element, it will
98
+ # need to override to prevent this from happening. That's easy enough, though.
99
+ if changes.key?("hidden")
100
+ hidden = changes.delete("hidden")
101
+ if hidden
102
+ html_element.set_style("display", "none")
103
+ else
104
+ new_style = style # Get current display CSS property, which may vary by subclass
105
+ disp = new_style[:display]
106
+ html_element.set_style("display", disp || "block")
107
+ end
108
+ end
109
+
110
+ needs_update! unless changes.empty?
111
+ end
112
+
113
+ # Give this drawable a new parent, including managing the appropriate child lists for parent drawables.
114
+ def set_parent(new_parent)
115
+ @parent&.remove_child(self)
116
+ new_parent&.add_child(self)
117
+ @parent = new_parent
118
+ end
119
+
120
+ # A shorter inspect text for prettier irb output
121
+ def inspect
122
+ "#<#{self.class}:#{self.object_id} @shoes_linkable_id=#{@shoes_linkable_id} @children=#{@children.inspect}>"
123
+ end
124
+
125
+ protected
126
+
127
+ # Do not call directly, use set_parent
128
+ def remove_child(child)
129
+ @children ||= []
130
+ unless @children.include?(child)
131
+ @log.error("remove_child: no such child(#{child.inspect}) for"\
132
+ " parent(#{parent.inspect})!")
133
+ end
134
+ @children.delete(child)
135
+ end
136
+
137
+ # Do not call directly, use set_parent
138
+ def add_child(child)
139
+ @children ||= []
140
+ @children << child
141
+
142
+ # If we add a child, we should redraw ourselves
143
+ needs_update!
144
+ end
145
+
146
+ # Convert an [r, g, b, a] array to an HTML hex color code
147
+ # Arrays support alpha. HTML hex does not. So premultiply.
148
+ def rgb_to_hex(color)
149
+ return color if color.nil?
150
+
151
+ r, g, b, a = *color
152
+ if r.is_a?(Float)
153
+ a ||= 1.0
154
+ r_float = r * a
155
+ g_float = g * a
156
+ b_float = b * a
157
+ else
158
+ a ||= 255
159
+ a_float = (a / 255.0)
160
+ r_float = (r.to_f / 255.0) * a_float
161
+ g_float = (g.to_f / 255.0) * a_float
162
+ b_float = (b.to_f / 255.0) * a_float
163
+ end
164
+
165
+ r_int = (r_float * 255.0).to_i.clamp(0, 255)
166
+ g_int = (g_float * 255.0).to_i.clamp(0, 255)
167
+ b_int = (b_float * 255.0).to_i.clamp(0, 255)
168
+
169
+ "#%0.2X%0.2X%0.2X" % [r_int, g_int, b_int]
170
+ end
171
+
172
+ # CSS styles
173
+ def style
174
+ styles = {}
175
+ if @hidden
176
+ styles[:display] = "none"
177
+ end
178
+ styles
179
+ end
180
+
181
+ public
182
+
183
+ # This gets an accessor for just this element's HTML ID.
184
+ # It is normally called by the drawable itself to do its DOM management.
185
+ # Drawables are required to use their html_id for their outermost element,
186
+ # to make sure that remove(), hidden() etc. affect every part of the drawable.
187
+ #
188
+ # @return [Scarpe::WebWrangler::ElementWrangler] a DOM object manager
189
+ def html_element
190
+ @elt_wrangler ||= Scarpe::Webview::WebWrangler::ElementWrangler.new(html_id)
191
+ end
192
+
193
+ # Return a promise that guarantees all currently-requested changes have completed
194
+ #
195
+ # @return [Scarpe::Promise] a promise that will be fulfilled when all pending changes have finished
196
+ def promise_update
197
+ # Doesn't matter what ElementWrangler we use -- they all return an update promise
198
+ # that includes all pending updates, no matter who they're for.
199
+ html_element.promise_update
200
+ end
201
+
202
+ # Get the object's HTML ID
203
+ #
204
+ # @return [String] the HTML ID
205
+ def html_id
206
+ @linkable_id.to_s
207
+ end
208
+
209
+ # to_html is intended to get the HTML DOM rendering of this object and its children.
210
+ # Calling it should be side-effect-free and NOT update the webview.
211
+ #
212
+ # @return [String] the rendered HTML
213
+ def to_html
214
+ @children ||= []
215
+ child_markup = @children.map(&:to_html).join
216
+ element { child_markup }
217
+ end
218
+
219
+ # This binds a Scarpe JS callback, handled via a single dispatch point in the app
220
+ #
221
+ # @param event [String] the Scarpe drawable event name
222
+ # @yield the block to call when the event occurs
223
+ def bind(event, &block)
224
+ raise(Scarpe::MissingAttributeError, "Drawable has no linkable_id! #{inspect}") unless linkable_id
225
+
226
+ DisplayService.instance.app.bind("#{linkable_id}-#{event}", &block)
227
+ end
228
+
229
+ # Removes the element from both the Ruby Drawable tree and the HTML DOM.
230
+ # Unsubscribe from all Shoes events.
231
+ # Return a promise for when that HTML change will be visible.
232
+ #
233
+ # @return [Scarpe::Promise] a promise that is fulfilled when the HTML change is complete
234
+ def destroy_self
235
+ @parent&.remove_child(self)
236
+ unsub_all_shoes_events
237
+ html_element.remove
238
+ end
239
+
240
+ # Request a full redraw of the entire window, including the entire tree of
241
+ # drawables and the outer "empty page" frame.
242
+ #
243
+ # @return [void]
244
+ def full_window_redraw!
245
+ DisplayService.instance.app.request_redraw!
246
+ end
247
+
248
+ # Request a full redraw of this drawable, including all its children.
249
+ # Can be overridden in drawable subclasses if needed. An override would normally
250
+ # only be needed if re-rendering the element with the given html_id
251
+ # wasn't enough (and then remove would also need to be overridden.)
252
+ #
253
+ # This occurs by default if a property is changed and the drawable
254
+ # doesn't remove its change in property_changed.
255
+ #
256
+ # @return [void]
257
+ def needs_update!
258
+ html_element.outer_html = to_html
259
+ end
260
+
261
+ # Generate JS code to trigger a specific event name on this drawable with the supplies arguments.
262
+ #
263
+ # @param handler_function_name [String] the event name - @see #bind
264
+ # @param args [Array] additional arguments that will be passed to the event in the generated JS
265
+ # @return [String] the generated JS code
266
+ def handler_js_code(handler_function_name, *args)
267
+ raise(Scarpe::MissingAttributeError, "Drawable has no linkable_id! #{inspect}") unless linkable_id
268
+
269
+ js_args = ["'#{linkable_id}-#{handler_function_name}'", *args].join(", ")
270
+ "scarpeHandler(#{js_args})"
271
+ end
272
+ end
273
+ end
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewEditBox < Scarpe::WebviewWidget
3
+ module Scarpe::Webview
4
+ class EditBox < Drawable
5
5
  attr_reader :text, :height, :width
6
6
 
7
7
  def initialize(properties)
8
8
  super
9
9
 
10
- # The JS handler sends a "change" event, which we forward to the Shoes widget tree
10
+ # The JS handler sends a "change" event, which we forward to the Shoes drawable tree
11
11
  bind("change") do |new_text|
12
12
  send_self_event(new_text, event_name: "change")
13
13
  end
@@ -23,22 +23,7 @@ class Scarpe
23
23
  end
24
24
 
25
25
  def element
26
- oninput = handler_js_code("change", "this.value")
27
-
28
- HTML.render do |h|
29
- h.textarea(id: html_id, oninput: oninput, style: style) { text }
30
- end
31
- end
32
-
33
- private
34
-
35
- def style
36
- styles = {}
37
-
38
- styles[:height] = Dimensions.length(height)
39
- styles[:width] = Dimensions.length(width)
40
-
41
- styles.compact
26
+ render("edit_box")
42
27
  end
43
28
  end
44
29
  end
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewEditLine < WebviewWidget
3
+ module Scarpe::Webview
4
+ class EditLine < Drawable
5
5
  attr_reader :text, :width
6
6
 
7
7
  def initialize(properties)
8
8
  super
9
9
 
10
- # The JS handler sends a "change" event, which we forward to the Shoes widget tree
10
+ # The JS handler sends a "change" event, which we forward to the Shoes drawable tree
11
11
  bind("change") do |new_text|
12
12
  send_self_event(new_text, event_name: "change")
13
13
  end
@@ -23,21 +23,7 @@ class Scarpe
23
23
  end
24
24
 
25
25
  def element
26
- oninput = handler_js_code("change", "this.value")
27
-
28
- HTML.render do |h|
29
- h.input(id: html_id, oninput: oninput, value: @text, style: style)
30
- end
31
- end
32
-
33
- private
34
-
35
- def style
36
- styles = {}
37
-
38
- styles[:width] = Dimensions.length(@width) if @width
39
-
40
- styles
26
+ render("edit_line")
41
27
  end
42
28
  end
43
29
  end
@@ -1,32 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewFlow < Scarpe::WebviewWidget
5
- include Scarpe::WebviewBackground
6
- include Scarpe::WebviewBorder
7
-
8
- def initialize(properties)
9
- super
10
- end
11
-
12
- def element(&block)
13
- HTML.render do |h|
14
- h.div(id: html_id, style:, &block)
15
- end
16
- end
17
-
18
- private
19
-
20
- def style
21
- styles = super
22
-
23
- styles[:display] = "flex"
24
- styles["flex-direction"] = "row"
25
- styles["flex-wrap"] = "wrap"
26
- styles[:width] = Dimensions.length(@width) if @width
27
- styles[:height] = Dimensions.length(@height) if @height
28
-
29
- styles
30
- end
3
+ module Scarpe::Webview
4
+ class Flow < Slot
31
5
  end
32
6
  end
@@ -1,36 +1,21 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewImage < WebviewWidget
3
+ require "scarpe/components/base64"
4
+
5
+ module Scarpe::Webview
6
+ class Image < Drawable
7
+ include Scarpe::Components::Base64
8
+
5
9
  def initialize(properties)
6
10
  super
7
- end
8
11
 
9
- def element
10
- if @click
11
- HTML.render do |h|
12
- h.a(id: html_id, href: @click) { h.img(id: html_id, src: @url, style:) }
13
- end
14
- else
15
- HTML.render do |h|
16
- h.img(id: html_id, src: @url, style:)
17
- end
12
+ unless valid_url?(@url)
13
+ @url = "data:image/png;base64,#{encode_file_to_base64(@url)}"
18
14
  end
19
15
  end
20
16
 
21
- private
22
-
23
- def style
24
- styles = {}
25
-
26
- styles[:width] = Dimensions.length(@width) if @width
27
- styles[:height] = Dimensions.length(@height) if @height
28
-
29
- styles[:top] = Dimensions.length(@top) if @top
30
- styles[:left] = Dimensions.length(@left) if @left
31
- styles[:position] = "absolute" if @top || @left
32
-
33
- styles
17
+ def element
18
+ render("image")
34
19
  end
35
20
  end
36
21
  end
@@ -1,38 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "shape_helper"
4
- class Scarpe
5
- class WebviewLine < Scarpe::WebviewWidget
6
- include ShapeHelper
7
-
3
+ module Scarpe::Webview
4
+ class Line < Drawable
8
5
  def initialize(properties)
9
6
  super(properties)
10
7
  end
11
8
 
12
9
  def element
13
- HTML.render do |h|
14
- h.div(id: html_id, style: style) do
15
- h.svg(width: @x2, height: @y2) do
16
- h.line(x1: @left, y1: @top, x2: @x2, y2: @y2, style: line_style)
17
- end
18
- end
19
- end
20
- end
21
-
22
- private
23
-
24
- def style
25
- {
26
- left: "#{@left}px",
27
- top: "#{@top}px",
28
- }
29
- end
30
-
31
- def line_style
32
- {
33
- stroke: " #{@color}",
34
- "stroke-width": "4",
35
- }
10
+ render("line")
36
11
  end
37
12
  end
38
13
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewLink < WebviewWidget
3
+ module Scarpe::Webview
4
+ class Link < TextDrawable
5
5
  def initialize(properties)
6
6
  super
7
7
 
@@ -11,19 +11,7 @@ class Scarpe
11
11
  end
12
12
 
13
13
  def element
14
- HTML.render do |h|
15
- h.a(**attributes) do
16
- @text
17
- end
18
- end
19
- end
20
-
21
- def attributes
22
- {
23
- id: html_id,
24
- href: @click,
25
- onclick: (handler_js_code("click") if @has_block),
26
- }.compact
14
+ render "link"
27
15
  end
28
16
  end
29
17
  end
@@ -1,20 +1,19 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewListBox < Scarpe::WebviewWidget
5
- attr_reader :selected_item, :items, :height, :width
3
+ module Scarpe::Webview
4
+ class ListBox < Drawable
5
+ attr_reader :items, :height, :width, :chosen
6
6
 
7
7
  def initialize(properties)
8
- super(properties)
8
+ super
9
9
 
10
- # The JS handler sends a "change" event, which we forward to the Shoes widget tree
11
10
  bind("change") do |new_item|
12
11
  send_self_event(new_item, event_name: "change")
13
12
  end
14
13
  end
15
14
 
16
15
  def properties_changed(changes)
17
- selected = changes.delete("selected_item")
16
+ selected = changes.delete("chosen")
18
17
  if selected
19
18
  html_element.value = selected
20
19
  end
@@ -22,29 +21,7 @@ class Scarpe
22
21
  end
23
22
 
24
23
  def element
25
- onchange = handler_js_code("change", "this.options[this.selectedIndex].value")
26
-
27
- select_attrs = { id: html_id, onchange: onchange, style: style }
28
- option_attrs = { value: nil, selected: false }
29
-
30
- HTML.render do |h|
31
- h.select(**select_attrs) do
32
- items.each do |item|
33
- h.option(**option_attrs, value: item, selected: (item == selected_item)) { item }
34
- end
35
- end
36
- end
37
- end
38
-
39
- private
40
-
41
- def style
42
- styles = {}
43
-
44
- styles[:height] = Dimensions.length(height) if height
45
- styles[:width] = Dimensions.length(width) if width
46
-
47
- styles.compact
24
+ render("list_box")
48
25
  end
49
26
  end
50
27
  end
@@ -1,7 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class Scarpe
4
- class WebviewPara < WebviewWidget
3
+ module Scarpe::Webview
4
+ class Para < Drawable
5
+ # Currently this is duplicated in Calzini. How to refactor?
6
+ # Similarly, we make some assumptions about when size is a symbol
7
+ # versus string that may not survive JSON deserialization.
8
+ # Do we want to hardcode these sizes in Lacci and have it always
9
+ # pass numbers?
5
10
  SIZES = {
6
11
  inscription: 10,
7
12
  ins: 10,
@@ -14,10 +19,6 @@ class Scarpe
14
19
  }.freeze
15
20
  private_constant :SIZES
16
21
 
17
- def initialize(properties)
18
- super
19
- end
20
-
21
22
  def properties_changed(changes)
22
23
  items = changes.delete("text_items")
23
24
  if items
@@ -40,17 +41,17 @@ class Scarpe
40
41
  if item.is_a?(String)
41
42
  item
42
43
  else
43
- WebviewDisplayService.instance.query_display_widget_for(item)
44
+ Scarpe::Webview::DisplayService.instance.query_display_drawable_for(item)
44
45
  end
45
46
  end
46
47
  end
47
48
 
48
49
  def element(&block)
49
- HTML.render do |h|
50
- h.p(**options, &block)
51
- end
50
+ render("para", &block)
52
51
  end
53
52
 
53
+ # Because para's to_html takes a block, and it needs to convert IDs into display
54
+ # drawables, it needs to also override to_html
54
55
  def to_html
55
56
  @children ||= []
56
57
 
@@ -68,23 +69,5 @@ class Scarpe
68
69
  end
69
70
  end.join
70
71
  end
71
-
72
- def options
73
- @html_attributes.merge(id: html_id, style: style)
74
- end
75
-
76
- def style
77
- {
78
- "color" => rgb_to_hex(@stroke),
79
- "font-size" => font_size,
80
- "font-family" => @font,
81
- }.compact
82
- end
83
-
84
- def font_size
85
- font_size = @size.is_a?(Symbol) ? SIZES[@size] : @size
86
-
87
- Dimensions.length(font_size)
88
- end
89
72
  end
90
73
  end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Scarpe::Webview
4
+ class Progress < Drawable
5
+ def initialize(properties)
6
+ super
7
+ end
8
+
9
+ # For now do *not* catch properties_changed and do a small update.
10
+ # Tiranti updates some additional fields (e.g. aria-valuenow) that
11
+ # Calzini does not. We'll want Calzini and Tiranti to handle the
12
+ # updates more for themselves. See issue #419 for updates on how
13
+ # we'll handle this. But for right now we re-render the whole
14
+ # drawable every time we change the progress fraction.
15
+ def element
16
+ render("progress")
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Scarpe::Webview
4
+ class Radio < Drawable
5
+ # TODO: is this needed?
6
+ attr_reader :text
7
+
8
+ def initialize(properties)
9
+ super
10
+
11
+ bind("click") do
12
+ send_self_event(event_name: "click", target: shoes_linkable_id)
13
+ end
14
+ end
15
+
16
+ def properties_changed(changes)
17
+ items = changes.delete("checked")
18
+ html_element.toggle_input_button(items)
19
+
20
+ super
21
+ end
22
+
23
+ def element
24
+ props = shoes_styles
25
+
26
+ # If a group isn't set, default to the linkable ID of the parent slot
27
+ unless @group
28
+ props["group"] = @parent ? @parent.shoes_linkable_id : "no_group"
29
+ end
30
+ render("radio", props)
31
+ end
32
+ end
33
+ end