scarpe 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -0
- data/.yardopts +12 -0
- data/CHANGELOG.md +16 -2
- data/Gemfile +3 -0
- data/Gemfile.lock +116 -0
- data/README.md +53 -30
- data/Rakefile +13 -1
- data/docs/yard/catscradle.md +44 -0
- data/docs/yard/template/default/fulldoc/html/setup.rb +13 -0
- data/docs/yard/template/default/layout/html/setup.rb +9 -0
- data/examples/animate.rb +20 -0
- data/examples/arrow.rb +10 -0
- data/examples/background_with_image.rb +16 -0
- data/examples/bloopsaphone/working/bronx_army_knife.rb +66 -0
- data/examples/bloopsaphone/working/morning_serenity.rb +21 -0
- data/examples/bloopsaphone/working/simpsons_theme_song_by_why.rb +6 -4
- data/examples/btn_tooltip.rb +7 -0
- data/examples/button_go_away.rb +1 -1
- data/examples/button_style_changed.rb +7 -0
- data/examples/button_styles_default.rb +6 -0
- data/examples/check.rb +18 -0
- data/examples/clear_and_append.rb +24 -0
- data/examples/download_and_show_image.rb +28 -0
- data/examples/edit_box.rb +3 -5
- data/examples/fonts.rb +2 -2
- data/examples/gen.rb +8 -8
- data/examples/get_headers.rb +10 -0
- data/examples/highlander.rb +4 -2
- data/examples/legacy/README.md +6 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/shoes-notes.rb +1 -1
- data/examples/legacy/not_checked/simple/anim-shapes.rb +1 -1
- data/examples/legacy/not_checked/speedometer_app.rb +55 -0
- data/examples/legacy/working/simple/image-icon.rb +3 -0
- data/examples/legacy/{not_checked → working}/simple/image.rb +1 -1
- data/examples/link.rb +2 -2
- data/examples/list_box_choose.rb +17 -0
- data/examples/local_assets/local_file_server.rb +82 -0
- data/examples/local_assets/sample.gif +0 -0
- data/examples/local_assets/sample.mp4 +0 -0
- data/examples/local_fonts.rb +4 -0
- data/examples/local_images.rb +3 -0
- data/examples/motion_events.rb +20 -0
- data/examples/para/para_text.rb +14 -0
- data/examples/parse_xl_funnies.rb +58 -0
- data/examples/progress.rb +31 -0
- data/examples/radio/radio.rb +16 -0
- data/examples/radio/radio_groups.rb +18 -0
- data/examples/radio/radio_same_slot.rb +6 -0
- data/examples/rect.rb +4 -0
- data/examples/rotate_shapes.rb +17 -0
- data/examples/ruby_racer.rb +13 -15
- data/examples/selfitude.rb +18 -0
- data/examples/shapes/shapes_fill.rb +4 -3
- data/examples/shoes_school.rb +2 -4
- data/examples/show_hide.rb +6 -0
- data/examples/simpler-menu.rb +21 -0
- data/examples/skip_ci/change_my_audio_source.rb +21 -0
- data/examples/skip_ci/guitar_fretboard.rb +137 -0
- data/examples/video.rb +10 -0
- data/exe/scarpe +43 -66
- data/fonts/Pacifico.ttf +0 -0
- data/lacci/Gemfile +24 -0
- data/lacci/Gemfile.lock +79 -0
- data/lacci/Rakefile +12 -0
- data/lacci/lacci.gemspec +37 -0
- data/lacci/lib/lacci/scarpe_cli.rb +71 -0
- data/lacci/lib/lacci/scarpe_core.rb +22 -0
- data/lacci/lib/lacci/version.rb +13 -0
- data/lacci/lib/scarpe/niente/app.rb +23 -0
- data/lacci/lib/scarpe/niente/display_service.rb +62 -0
- data/lacci/lib/scarpe/niente/drawable.rb +57 -0
- data/lacci/lib/scarpe/niente/logger.rb +29 -0
- data/lacci/lib/scarpe/niente/shoes_spec.rb +87 -0
- data/lacci/lib/scarpe/niente.rb +20 -0
- data/lacci/lib/shoes/app.rb +309 -0
- data/{lib/scarpe → lacci/lib/shoes}/background.rb +2 -2
- data/{lib/scarpe → lacci/lib/shoes}/border.rb +2 -2
- data/lacci/lib/shoes/builtins.rb +63 -0
- data/lacci/lib/shoes/changelog.rb +52 -0
- data/{lib/scarpe → lacci/lib/shoes}/colors.rb +3 -1
- data/lacci/lib/shoes/constants.rb +47 -0
- data/{lib/scarpe → lacci/lib/shoes}/display_service.rb +71 -53
- data/lacci/lib/shoes/download.rb +123 -0
- data/lacci/lib/shoes/drawable.rb +380 -0
- data/lacci/lib/shoes/drawables/arc.rb +49 -0
- data/lacci/lib/shoes/drawables/arrow.rb +41 -0
- data/lacci/lib/shoes/drawables/button.rb +73 -0
- data/lacci/lib/shoes/drawables/check.rb +29 -0
- data/lacci/lib/shoes/drawables/document_root.rb +20 -0
- data/lacci/lib/shoes/drawables/edit_box.rb +29 -0
- data/{lib/scarpe → lacci/lib/shoes/drawables}/edit_line.rb +6 -6
- data/lacci/lib/shoes/drawables/flow.rb +22 -0
- data/{lib/scarpe → lacci/lib/shoes/drawables}/image.rb +7 -11
- data/lacci/lib/shoes/drawables/line.rb +20 -0
- data/lacci/lib/shoes/drawables/link.rb +34 -0
- data/lacci/lib/shoes/drawables/list_box.rb +56 -0
- data/lacci/lib/shoes/drawables/para.rb +118 -0
- data/lacci/lib/shoes/drawables/progress.rb +14 -0
- data/lacci/lib/shoes/drawables/radio.rb +33 -0
- data/lacci/lib/shoes/drawables/rect.rb +17 -0
- data/lacci/lib/shoes/drawables/shape.rb +36 -0
- data/lacci/lib/shoes/drawables/slot.rb +87 -0
- data/{lib/scarpe → lacci/lib/shoes/drawables}/span.rb +8 -7
- data/lacci/lib/shoes/drawables/stack.rb +26 -0
- data/lacci/lib/shoes/drawables/star.rb +50 -0
- data/lacci/lib/shoes/drawables/subscription_item.rb +93 -0
- data/lacci/lib/shoes/drawables/text_drawable.rb +63 -0
- data/lacci/lib/shoes/drawables/video.rb +16 -0
- data/lacci/lib/shoes/drawables/widget.rb +69 -0
- data/lacci/lib/shoes/drawables.rb +31 -0
- data/lacci/lib/shoes/errors.rb +28 -0
- data/lacci/lib/shoes/log.rb +71 -0
- data/lacci/lib/shoes/ruby_extensions.rb +15 -0
- data/lacci/lib/shoes/spacing.rb +9 -0
- data/lacci/lib/shoes-spec.rb +93 -0
- data/lacci/lib/shoes.rb +147 -0
- data/lacci/test/test_colors.rb +39 -0
- data/lacci/test/test_helper.rb +63 -0
- data/lacci/test/test_lacci.rb +18 -0
- data/lacci/test/test_shoes_errors.rb +49 -0
- data/lib/scarpe/cats_cradle.rb +271 -0
- data/lib/scarpe/errors.rb +77 -0
- data/lib/scarpe/evented_assertions.rb +121 -0
- data/lib/scarpe/shoes_spec.rb +181 -0
- data/lib/scarpe/version.rb +2 -2
- data/lib/scarpe/wv/app.rb +45 -23
- data/lib/scarpe/wv/arc.rb +4 -48
- data/lib/scarpe/wv/arrow.rb +9 -0
- data/lib/scarpe/wv/button.rb +7 -33
- data/lib/scarpe/wv/check.rb +27 -0
- data/lib/scarpe/wv/control_interface.rb +32 -40
- data/lib/scarpe/wv/document_root.rb +66 -31
- data/lib/scarpe/wv/drawable.rb +273 -0
- data/lib/scarpe/wv/edit_box.rb +4 -19
- data/lib/scarpe/wv/edit_line.rb +4 -18
- data/lib/scarpe/wv/flow.rb +2 -28
- data/lib/scarpe/wv/image.rb +10 -25
- data/lib/scarpe/wv/line.rb +3 -28
- data/lib/scarpe/wv/link.rb +3 -15
- data/lib/scarpe/wv/list_box.rb +6 -29
- data/lib/scarpe/wv/para.rb +11 -28
- data/lib/scarpe/wv/progress.rb +19 -0
- data/lib/scarpe/wv/radio.rb +33 -0
- data/lib/scarpe/wv/rect.rb +13 -0
- data/lib/scarpe/wv/shape.rb +41 -10
- data/lib/scarpe/wv/slot.rb +64 -0
- data/lib/scarpe/wv/span.rb +3 -25
- data/lib/scarpe/wv/stack.rb +2 -38
- data/lib/scarpe/wv/star.rb +3 -54
- data/lib/scarpe/wv/subscription_item.rb +84 -0
- data/lib/scarpe/wv/text_drawable.rb +32 -0
- data/lib/scarpe/wv/video.rb +34 -0
- data/lib/scarpe/wv/web_wrangler.rb +449 -299
- data/lib/scarpe/wv/webview_local_display.rb +63 -26
- data/lib/scarpe/wv/webview_relay_display.rb +24 -125
- data/lib/scarpe/wv/webview_relay_util.rb +140 -0
- data/lib/scarpe/wv/wv_display_worker.rb +19 -6
- data/lib/scarpe/wv.rb +76 -14
- data/lib/scarpe/wv_local.rb +1 -1
- data/lib/scarpe/wv_relay.rb +1 -1
- data/lib/scarpe.rb +4 -32
- data/logger/debug_web_wrangler.json +1 -1
- data/logger/scarpe_wv_test.json +1 -1
- data/scarpe-components/.gitignore +1 -0
- data/scarpe-components/Gemfile +22 -0
- data/scarpe-components/Gemfile.lock +86 -0
- data/scarpe-components/README.md +35 -0
- data/scarpe-components/Rakefile +12 -0
- data/scarpe-components/lib/scarpe/components/base64.rb +25 -0
- data/scarpe-components/lib/scarpe/components/calzini/alert.rb +49 -0
- data/scarpe-components/lib/scarpe/components/calzini/art_widgets.rb +203 -0
- data/scarpe-components/lib/scarpe/components/calzini/button.rb +39 -0
- data/scarpe-components/lib/scarpe/components/calzini/misc.rb +146 -0
- data/scarpe-components/lib/scarpe/components/calzini/para.rb +35 -0
- data/scarpe-components/lib/scarpe/components/calzini/slots.rb +155 -0
- data/scarpe-components/lib/scarpe/components/calzini/text_widgets.rb +65 -0
- data/scarpe-components/lib/scarpe/components/calzini.rb +149 -0
- data/scarpe-components/lib/scarpe/components/errors.rb +20 -0
- data/scarpe-components/lib/scarpe/components/file_helpers.rb +66 -0
- data/scarpe-components/lib/scarpe/components/html.rb +131 -0
- data/scarpe-components/lib/scarpe/components/minitest_export_reporter.rb +75 -0
- data/scarpe-components/lib/scarpe/components/minitest_import_runnable.rb +98 -0
- data/scarpe-components/lib/scarpe/components/minitest_result.rb +86 -0
- data/scarpe-components/lib/scarpe/components/modular_logger.rb +113 -0
- data/scarpe-components/lib/scarpe/components/print_logger.rb +47 -0
- data/{lib/scarpe → scarpe-components/lib/scarpe/components}/promises.rb +115 -48
- data/scarpe-components/lib/scarpe/components/segmented_file_loader.rb +189 -0
- data/scarpe-components/lib/scarpe/components/string_helpers.rb +10 -0
- data/scarpe-components/lib/scarpe/components/tiranti.rb +225 -0
- data/scarpe-components/lib/scarpe/components/unit_test_helpers.rb +257 -0
- data/scarpe-components/lib/scarpe/components/version.rb +7 -0
- data/scarpe-components/scarpe-components.gemspec +38 -0
- data/scarpe-components/test/calzini/test_calzini_alert.rb +30 -0
- data/scarpe-components/test/calzini/test_calzini_art_drawables.rb +105 -0
- data/scarpe-components/test/calzini/test_calzini_button.rb +52 -0
- data/scarpe-components/test/calzini/test_calzini_misc.rb +115 -0
- data/scarpe-components/test/calzini/test_calzini_para.rb +37 -0
- data/scarpe-components/test/calzini/test_calzini_slots.rb +130 -0
- data/scarpe-components/test/calzini/test_calzini_text_drawables.rb +41 -0
- data/scarpe-components/test/mtr_data/exception.json +1 -0
- data/scarpe-components/test/mtr_data/fail_with_message.json +1 -0
- data/scarpe-components/test/mtr_data/skipped_no_message.json +1 -0
- data/scarpe-components/test/mtr_data/skipped_w_msg.json +1 -0
- data/scarpe-components/test/mtr_data/succeed_2_asserts.json +1 -0
- data/scarpe-components/test/test_components.rb +9 -0
- data/scarpe-components/test/test_dimensions.rb +26 -0
- data/scarpe-components/test/test_helper.rb +43 -0
- data/scarpe-components/test/test_html.rb +65 -0
- data/scarpe-components/test/test_minitest_result.rb +61 -0
- data/scarpe-components/test/test_promises.rb +261 -0
- data/scarpe-components/test/test_segmented_app_files.rb +184 -0
- data/scarpegen.rb +14 -14
- data/sig/scarpe.rbs +1 -1
- data/{lib/scarpe → spikes}/glibui/widget.rb +2 -2
- data/{lib/scarpe → spikes}/glibui.rb +1 -1
- data/templates/basic_class_template.erb +13 -14
- data/templates/class_template_with_event_bind.erb +4 -4
- data/templates/class_template_with_shapes.erb +8 -17
- data/templates/example_template.erb +1 -1
- data/templates/module_template.erb +4 -4
- data/templates/webview_template.erb +3 -5
- metadata +236 -145
- data/examples/fill.rb +0 -25
- data/examples/legacy/not_checked/shoes-contrib/basic/class-book.yaml +0 -387
- data/examples/legacy/not_checked/shoes-contrib/elements/image-icon.rb +0 -3
- data/examples/legacy/not_checked/shoes-contrib/good/good-clock.rb +0 -51
- data/examples/legacy/not_checked/shoes-contrib/good/good-follow.rb +0 -26
- data/examples/legacy/not_checked/shoes-contrib/good/good-reminder.rb +0 -174
- data/examples/legacy/not_checked/shoes-contrib/good/good-vjot.rb +0 -56
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-timer.rb +0 -13
- data/examples/legacy/not_checked/shoes-dep-samples/good-clock.rb +0 -51
- data/examples/legacy/not_checked/shoes-dep-samples/good-follow.rb +0 -26
- data/examples/legacy/not_checked/shoes-dep-samples/good-reminder.rb +0 -174
- data/examples/legacy/not_checked/shoes-dep-samples/good-vjot.rb +0 -56
- data/examples/legacy/not_checked/shoes-dep-samples/simple-accordion.rb +0 -75
- data/examples/legacy/not_checked/shoes-dep-samples/simple-anim-shapes.rb +0 -17
- data/examples/legacy/not_checked/shoes-dep-samples/simple-anim-text.rb +0 -13
- data/examples/legacy/not_checked/shoes-dep-samples/simple-arc.rb +0 -23
- data/examples/legacy/not_checked/shoes-dep-samples/simple-bounce.rb +0 -24
- data/examples/legacy/not_checked/shoes-dep-samples/simple-calc.rb +0 -70
- data/examples/legacy/not_checked/shoes-dep-samples/simple-chipmunk.rb +0 -26
- data/examples/legacy/not_checked/shoes-dep-samples/simple-control-sizes.rb +0 -24
- data/examples/legacy/not_checked/shoes-dep-samples/simple-curve.rb +0 -26
- data/examples/legacy/not_checked/shoes-dep-samples/simple-dialogs.rb +0 -29
- data/examples/legacy/not_checked/shoes-dep-samples/simple-draw.rb +0 -13
- data/examples/legacy/not_checked/shoes-dep-samples/simple-editor.rb +0 -28
- data/examples/legacy/not_checked/shoes-dep-samples/simple-form.rb +0 -28
- data/examples/legacy/not_checked/shoes-dep-samples/simple-form.shy +0 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-mask.rb +0 -21
- data/examples/legacy/not_checked/shoes-dep-samples/simple-menu.rb +0 -31
- data/examples/legacy/not_checked/shoes-dep-samples/simple-menu1.rb +0 -35
- data/examples/legacy/not_checked/shoes-dep-samples/simple-rubygems.rb +0 -29
- data/examples/legacy/not_checked/shoes-dep-samples/simple-slide.rb +0 -45
- data/examples/legacy/not_checked/shoes-dep-samples/simple-sphere.rb +0 -28
- data/examples/legacy/not_checked/shoes-dep-samples/simple-sqlite3.rb +0 -13
- data/examples/legacy/not_checked/shoes-dep-samples/simple-timer.rb +0 -13
- data/examples/legacy/not_checked/shoes-dep-samples/simple-video.rb +0 -13
- data/examples/legacy/not_checked/simple/anim-text.rb +0 -13
- data/examples/legacy/not_checked/simple/arc.rb +0 -23
- data/examples/legacy/not_checked/simple/bounce.rb +0 -24
- data/examples/legacy/not_checked/simple/chipmunk.rb +0 -26
- data/examples/legacy/not_checked/simple/curve.rb +0 -26
- data/examples/legacy/not_checked/simple/dialogs.rb +0 -29
- data/examples/legacy/not_checked/simple/downloader.rb +0 -40
- data/examples/legacy/not_checked/simple/draw.rb +0 -13
- data/examples/legacy/not_checked/simple/mask.rb +0 -21
- data/examples/legacy/not_checked/simple/slide.rb +0 -45
- data/examples/legacy/not_checked/simple/sphere.rb +0 -28
- data/lib/constants.rb +0 -5
- data/lib/scarpe/alert.rb +0 -19
- data/lib/scarpe/app.rb +0 -78
- data/lib/scarpe/arc.rb +0 -49
- data/lib/scarpe/button.rb +0 -35
- data/lib/scarpe/document_root.rb +0 -20
- data/lib/scarpe/edit_box.rb +0 -24
- data/lib/scarpe/fill.rb +0 -23
- data/lib/scarpe/flow.rb +0 -19
- data/lib/scarpe/line.rb +0 -25
- data/lib/scarpe/link.rb +0 -25
- data/lib/scarpe/list_box.rb +0 -25
- data/lib/scarpe/logger.rb +0 -155
- data/lib/scarpe/para.rb +0 -90
- data/lib/scarpe/shape.rb +0 -19
- data/lib/scarpe/spacing.rb +0 -9
- data/lib/scarpe/stack.rb +0 -70
- data/lib/scarpe/star.rb +0 -47
- data/lib/scarpe/text_widget.rb +0 -42
- data/lib/scarpe/unit_test_helpers.rb +0 -163
- data/lib/scarpe/widget.rb +0 -198
- data/lib/scarpe/widgets.rb +0 -30
- data/lib/scarpe/wv/alert.rb +0 -65
- data/lib/scarpe/wv/background.rb +0 -18
- data/lib/scarpe/wv/border.rb +0 -22
- data/lib/scarpe/wv/control_interface_test.rb +0 -253
- data/lib/scarpe/wv/dimensions.rb +0 -22
- data/lib/scarpe/wv/fill.rb +0 -30
- data/lib/scarpe/wv/html.rb +0 -107
- data/lib/scarpe/wv/shape_helper.rb +0 -44
- data/lib/scarpe/wv/spacing.rb +0 -41
- data/lib/scarpe/wv/text_widget.rb +0 -30
- data/lib/scarpe/wv/widget.rb +0 -181
- data/scarpe-0.2.0.gem +0 -0
- /data/examples/legacy/not_checked/{expert → shoes-contrib/basic}/definr.rb +0 -0
- /data/examples/legacy/not_checked/{expert → shoes-contrib/basic}/funnies.rb +0 -0
- /data/examples/legacy/not_checked/shoes-contrib/{elements → basic}/list_box-select-class.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/basic-edit-box.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/basic-fps.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/border-cat.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/check-mate.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/manipulation → working/simple}/clear-slot.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/clock.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/gradient-shoes.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/basic → working/simple}/list_box-shape-report.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/list_box.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/phat-button.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib → working}/simple/simple-calc.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/position → working/simple}/stack-width.rb +0 -0
- /data/examples/legacy/{not_checked/shoes-contrib/elements → working/simple}/width-introspec.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/README.md +0 -0
- /data/{lib/scarpe → spikes}/glibui/alert.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/app.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/background.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/border.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/button.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/dimensions.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/document_root.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/edit_box.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/edit_line.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/flow.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/html.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/image.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/link.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/local_display.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/para.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/spacing.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/stack.rb +0 -0
- /data/{lib/scarpe → spikes}/glibui/text_widget.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/alert.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/button.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/colors.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/core.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/flow.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/libui.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/notepad.md +0 -0
- /data/{lib/scarpe → spikes}/libui/para.rb +0 -0
- /data/{lib/scarpe → spikes}/libui/stack.rb +0 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Niente
|
4
|
+
# This is a "null" DisplayService, doing as little as it
|
5
|
+
# can get away with.
|
6
|
+
class DisplayService < Shoes::DisplayService
|
7
|
+
include Shoes::Log
|
8
|
+
|
9
|
+
class << self
|
10
|
+
attr_accessor :instance
|
11
|
+
end
|
12
|
+
|
13
|
+
def initialize
|
14
|
+
if Niente::DisplayService.instance
|
15
|
+
raise Shoes::SingletonError, "ERROR! This is meant to be a singleton!"
|
16
|
+
end
|
17
|
+
|
18
|
+
Niente::DisplayService.instance = self
|
19
|
+
|
20
|
+
log_init("Niente::DisplayService")
|
21
|
+
super()
|
22
|
+
end
|
23
|
+
|
24
|
+
# Create a fake display drawable for a specific Shoes drawable, and pair it with
|
25
|
+
# the linkable ID for this Shoes drawable.
|
26
|
+
#
|
27
|
+
# @param drawable_class_name [String] The class name of the Shoes drawable, e.g. Shoes::Button
|
28
|
+
# @param drawable_id [String] the linkable ID for drawable events
|
29
|
+
# @param properties [Hash] a JSON-serialisable Hash with the drawable's Shoes styles
|
30
|
+
# @param is_widget [Boolean] whether the class is a user-defined Shoes::Widget subclass
|
31
|
+
# @return [Webview::Drawable] the newly-created Webview drawable
|
32
|
+
def create_display_drawable_for(drawable_class_name, drawable_id, properties, is_widget:)
|
33
|
+
existing = query_display_drawable_for(drawable_id, nil_ok: true)
|
34
|
+
if existing
|
35
|
+
@log.warn("There is already a display drawable for #{drawable_id.inspect}! Returning #{existing.class.name}.")
|
36
|
+
return existing
|
37
|
+
end
|
38
|
+
|
39
|
+
if drawable_class_name == "App"
|
40
|
+
@app = Niente::App.new(properties)
|
41
|
+
set_drawable_pairing(drawable_id, @app)
|
42
|
+
|
43
|
+
return @app
|
44
|
+
end
|
45
|
+
|
46
|
+
display_drawable = Niente::Drawable.new(properties)
|
47
|
+
display_drawable.shoes_type = drawable_class_name
|
48
|
+
set_drawable_pairing(drawable_id, display_drawable)
|
49
|
+
|
50
|
+
return display_drawable
|
51
|
+
end
|
52
|
+
|
53
|
+
# Destroy the display service and the app. Quit the process (eventually.)
|
54
|
+
#
|
55
|
+
# @return [void]
|
56
|
+
def destroy
|
57
|
+
@app.destroy
|
58
|
+
DisplayService.instance = nil
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
module Niente
|
2
|
+
class Drawable < Shoes::Linkable
|
3
|
+
attr_reader :shoes_linkable_id
|
4
|
+
attr_reader :parent
|
5
|
+
attr_reader :children
|
6
|
+
|
7
|
+
attr_accessor :shoes_type
|
8
|
+
|
9
|
+
def initialize(props)
|
10
|
+
@shoes_linkable_id = props.delete("shoes_linkable_id") || props.delete(:shoes_linkable_id)
|
11
|
+
@data = props
|
12
|
+
|
13
|
+
super(linkable_id: @shoes_linkable_id)
|
14
|
+
|
15
|
+
bind_shoes_event(event_name: "parent", target: shoes_linkable_id) do |new_parent_id|
|
16
|
+
display_parent = DisplayService.instance.query_display_drawable_for(new_parent_id)
|
17
|
+
if @parent != display_parent
|
18
|
+
set_parent(display_parent)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# When Shoes drawables change properties, we get a change notification here
|
23
|
+
bind_shoes_event(event_name: "prop_change", target: shoes_linkable_id) do |prop_changes|
|
24
|
+
prop_changes.each do |k, v|
|
25
|
+
instance_variable_set("@" + k, v)
|
26
|
+
end
|
27
|
+
properties_changed(prop_changes) if respond_to?(:properties_changed)
|
28
|
+
end
|
29
|
+
|
30
|
+
bind_shoes_event(event_name: "destroy", target: shoes_linkable_id) do
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def set_parent(new_parent)
|
35
|
+
@parent&.remove_child(self)
|
36
|
+
new_parent&.add_child(self)
|
37
|
+
@parent = new_parent
|
38
|
+
end
|
39
|
+
|
40
|
+
# Do not call directly, use set_parent
|
41
|
+
def remove_child(child)
|
42
|
+
@children ||= []
|
43
|
+
unless @children.include?(child)
|
44
|
+
STDERR.puts("remove_child: no such child(#{child.inspect}) for"\
|
45
|
+
" parent(#{parent.inspect})!")
|
46
|
+
end
|
47
|
+
@children.delete(child)
|
48
|
+
end
|
49
|
+
|
50
|
+
# Do not call directly, use set_parent
|
51
|
+
def add_child(child)
|
52
|
+
@children ||= []
|
53
|
+
@children << child
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "shoes/log"
|
4
|
+
require "json"
|
5
|
+
|
6
|
+
module Niente; end
|
7
|
+
class Niente::LogImpl
|
8
|
+
include Shoes::Log # for constants
|
9
|
+
|
10
|
+
class PrintLogger
|
11
|
+
def initialize(_)
|
12
|
+
end
|
13
|
+
|
14
|
+
[:error, :warn, :debug, :info].each do |level|
|
15
|
+
define_method(level) do |msg|
|
16
|
+
puts "#{level}: #{msg}"
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def logger_for_component(component)
|
22
|
+
PrintLogger.new(component.to_s)
|
23
|
+
end
|
24
|
+
|
25
|
+
def configure_logger(log_config)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
#Shoes::Log.instance = Niente::LogImpl.new
|
@@ -0,0 +1,87 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "minitest"
|
4
|
+
require "scarpe/components/string_helpers"
|
5
|
+
|
6
|
+
module Niente; end
|
7
|
+
|
8
|
+
class Niente::Test
|
9
|
+
def self.run_shoes_spec_test_code(code, class_name: nil, test_name: nil)
|
10
|
+
if @shoes_spec_init
|
11
|
+
raise Shoes::Errors::MultipleShoesSpecRunsError, "Scarpe-Webview can only run a single Shoes spec per process!"
|
12
|
+
end
|
13
|
+
@shoes_spec_init = true
|
14
|
+
|
15
|
+
require "scarpe/components/minitest_export_reporter"
|
16
|
+
Minitest::Reporters::ShoesExportReporter.activate!
|
17
|
+
|
18
|
+
class_name ||= ENV["SHOES_MINITEST_CLASS_NAME"] || "TestShoesSpecCode"
|
19
|
+
test_name ||= ENV["SHOES_MINITEST_METHOD_NAME"] || "test_shoes_spec"
|
20
|
+
|
21
|
+
Shoes::DisplayService.subscribe_to_event("heartbeat", nil) do
|
22
|
+
unless @hb_init
|
23
|
+
Minitest.run []
|
24
|
+
Shoes::App.instance.destroy
|
25
|
+
end
|
26
|
+
@hb_init = true
|
27
|
+
end
|
28
|
+
|
29
|
+
test_class = Class.new(Niente::ShoesSpecTest)
|
30
|
+
Object.const_set(Scarpe::Components::StringHelpers.camelize(class_name), test_class)
|
31
|
+
test_name = "test_" + test_name unless test_name.start_with?("test_")
|
32
|
+
test_class.define_method(test_name) do
|
33
|
+
STDERR.puts "Started running #{class_name.inspect}::#{test_name.inspect}"
|
34
|
+
eval(code)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
class Niente::ShoesSpecTest < Minitest::Test
|
40
|
+
Shoes::Drawable.drawable_classes.each do |drawable_class|
|
41
|
+
finder_name = drawable_class.dsl_name
|
42
|
+
|
43
|
+
define_method(finder_name) do |*args|
|
44
|
+
app = Shoes::App.instance
|
45
|
+
|
46
|
+
drawables = app.find_drawables_by(drawable_class, *args)
|
47
|
+
raise Shoes::Errors::MultipleDrawablesFoundError, "Found more than one #{finder_name} matching #{args.inspect}!" if drawables.size > 1
|
48
|
+
raise Shoes::Errors::NoDrawablesFoundError, "Found no #{finder_name} matching #{args.inspect}!" if drawables.empty?
|
49
|
+
|
50
|
+
Niente::ShoesSpecProxy.new(drawables[0])
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
class Niente::ShoesSpecProxy
|
56
|
+
attr_reader :obj
|
57
|
+
attr_reader :linkable_id
|
58
|
+
attr_reader :display
|
59
|
+
|
60
|
+
def initialize(obj)
|
61
|
+
@obj = obj
|
62
|
+
@linkable_id = obj.linkable_id
|
63
|
+
@display = ::Shoes::DisplayService.display_service.query_display_drawable_for(obj.linkable_id)
|
64
|
+
end
|
65
|
+
|
66
|
+
def method_missing(method, ...)
|
67
|
+
if @obj.respond_to?(method)
|
68
|
+
self.singleton_class.define_method(method) do |*args, **kwargs, &block|
|
69
|
+
@obj.send(method, *args, **kwargs, &block)
|
70
|
+
end
|
71
|
+
send(method, ...)
|
72
|
+
else
|
73
|
+
super # raise an exception
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
JS_EVENTS = [:click, :hover, :leave]
|
78
|
+
JS_EVENTS.each do |event|
|
79
|
+
define_method("trigger_#{event}") do |*args, **kwargs|
|
80
|
+
::Shoes::DisplayService.dispatch_event(event.to_s, @linkable_id, *args, **kwargs)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def respond_to_missing?(method_name, include_private = false)
|
85
|
+
@obj.respond_to_missing?(method_name, include_private)
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Niente -- Italian for "nothing" -- is a null display service
|
4
|
+
# that doesn't display anything. It does very little, while
|
5
|
+
# keeping a certain amount of "mental model" or schema of
|
6
|
+
# how a real display service should act.
|
7
|
+
module Niente; end
|
8
|
+
|
9
|
+
require_relative "niente/logger"
|
10
|
+
Shoes::Log.instance = Niente::LogImpl.new
|
11
|
+
|
12
|
+
require_relative "niente/drawable"
|
13
|
+
require_relative "niente/app"
|
14
|
+
require_relative "niente/display_service"
|
15
|
+
|
16
|
+
require_relative "niente/shoes_spec"
|
17
|
+
Shoes::Spec.instance = Niente::Test
|
18
|
+
|
19
|
+
Shoes::DisplayService.set_display_service_class(Niente::DisplayService)
|
20
|
+
|
@@ -0,0 +1,309 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class Shoes
|
4
|
+
class App < Shoes::Drawable
|
5
|
+
include Shoes::Log
|
6
|
+
|
7
|
+
class << self
|
8
|
+
attr_accessor :instance
|
9
|
+
end
|
10
|
+
|
11
|
+
attr_reader :document_root
|
12
|
+
|
13
|
+
shoes_styles :title, :width, :height, :resizable
|
14
|
+
|
15
|
+
CUSTOM_EVENT_LOOP_TYPES = ["displaylib", "return", "wait"]
|
16
|
+
|
17
|
+
def initialize(
|
18
|
+
title: "Shoes!",
|
19
|
+
width: 480,
|
20
|
+
height: 420,
|
21
|
+
resizable: true,
|
22
|
+
&app_code_body
|
23
|
+
)
|
24
|
+
log_init("Shoes::App")
|
25
|
+
|
26
|
+
if Shoes::App.instance
|
27
|
+
@log.error("Trying to create a second Shoes::App in the same process! Fail!")
|
28
|
+
raise Shoes::Errors::TooManyInstancesError, "Cannot create multiple Shoes::App objects!"
|
29
|
+
else
|
30
|
+
Shoes::App.instance = self
|
31
|
+
end
|
32
|
+
|
33
|
+
@do_shutdown = false
|
34
|
+
@event_loop_type = "displaylib" # the default
|
35
|
+
|
36
|
+
super
|
37
|
+
|
38
|
+
# The draw context tracks current settings like fill and stroke,
|
39
|
+
# plus potentially other current state that changes from drawable
|
40
|
+
# to drawable and slot to slot.
|
41
|
+
@draw_context = {
|
42
|
+
"fill" => "",
|
43
|
+
"stroke" => "",
|
44
|
+
"rotate" => 0,
|
45
|
+
}
|
46
|
+
|
47
|
+
# This creates the DocumentRoot, including its corresponding display drawable
|
48
|
+
@document_root = Shoes::DocumentRoot.new
|
49
|
+
|
50
|
+
@slots = []
|
51
|
+
|
52
|
+
# Now create the App display drawable
|
53
|
+
create_display_drawable
|
54
|
+
|
55
|
+
# Set up testing events *after* Display Service basic objects exist
|
56
|
+
if ENV["SCARPE_APP_TEST"]
|
57
|
+
test_code = File.read ENV["SCARPE_APP_TEST"]
|
58
|
+
if test_code != ""
|
59
|
+
@test_obj = Object.new
|
60
|
+
@test_obj.instance_eval test_code
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
if ENV["SHOES_SPEC_TEST"]
|
65
|
+
test_code = File.read ENV["SHOES_SPEC_TEST"]
|
66
|
+
unless test_code.empty?
|
67
|
+
Shoes::Spec.instance.run_shoes_spec_test_code test_code
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
@app_code_body = app_code_body
|
72
|
+
|
73
|
+
# Try to de-dup as much as possible and not send repeat or multiple
|
74
|
+
# destroy events
|
75
|
+
@watch_for_destroy = bind_shoes_event(event_name: "destroy") do
|
76
|
+
Shoes::DisplayService.unsub_from_events(@watch_for_destroy) if @watch_for_destroy
|
77
|
+
@watch_for_destroy = nil
|
78
|
+
self.destroy(send_event: false)
|
79
|
+
end
|
80
|
+
|
81
|
+
@watch_for_event_loop = bind_shoes_event(event_name: "custom_event_loop") do |loop_type|
|
82
|
+
raise(Shoes::Errors::InvalidAttributeValueError, "Unknown event loop type: #{loop_type.inspect}!") unless CUSTOM_EVENT_LOOP_TYPES.include?(loop_type)
|
83
|
+
|
84
|
+
@event_loop_type = loop_type
|
85
|
+
end
|
86
|
+
|
87
|
+
Signal.trap("INT") do
|
88
|
+
@log.warn("App interrupted by signal, stopping...")
|
89
|
+
puts "\nStopping Shoes app..."
|
90
|
+
destroy
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def init
|
95
|
+
send_shoes_event(event_name: "init")
|
96
|
+
return if @do_shutdown
|
97
|
+
|
98
|
+
::Shoes::App.instance.with_slot(@document_root, &@app_code_body)
|
99
|
+
end
|
100
|
+
|
101
|
+
# "Container" drawables like flows, stacks, masks and the document root
|
102
|
+
# are considered "slots" in Shoes parlance. When a new slot is created,
|
103
|
+
# we push it here in order to track what drawables are found in that slot.
|
104
|
+
def push_slot(slot)
|
105
|
+
@slots.push(slot)
|
106
|
+
end
|
107
|
+
|
108
|
+
def pop_slot
|
109
|
+
return if @slots.size <= 1
|
110
|
+
|
111
|
+
@slots.pop
|
112
|
+
end
|
113
|
+
|
114
|
+
def current_slot
|
115
|
+
@slots[-1]
|
116
|
+
end
|
117
|
+
|
118
|
+
def with_slot(slot_item, &block)
|
119
|
+
return unless block_given?
|
120
|
+
|
121
|
+
push_slot(slot_item)
|
122
|
+
Shoes::App.instance.instance_eval(&block)
|
123
|
+
ensure
|
124
|
+
pop_slot
|
125
|
+
end
|
126
|
+
|
127
|
+
# We use method_missing for drawable-creating methods like "button".
|
128
|
+
# The parent's method_missing will auto-create Shoes style getters and setters.
|
129
|
+
# This is similar to the method_missing in Shoes::Slot, but different in
|
130
|
+
# where the new drawable appears.
|
131
|
+
def method_missing(name, *args, **kwargs, &block)
|
132
|
+
klass = ::Shoes::Drawable.drawable_class_by_name(name)
|
133
|
+
return super unless klass
|
134
|
+
|
135
|
+
::Shoes::App.define_method(name) do |*args, **kwargs, &block|
|
136
|
+
# Look up the Shoes drawable and create it...
|
137
|
+
drawable_instance = klass.new(*args, **kwargs, &block)
|
138
|
+
|
139
|
+
unless klass.ancestors.include?(::Shoes::TextDrawable)
|
140
|
+
# Create this drawable in the current app slot
|
141
|
+
drawable_instance.set_parent ::Shoes::App.instance.current_slot
|
142
|
+
end
|
143
|
+
|
144
|
+
drawable_instance
|
145
|
+
end
|
146
|
+
|
147
|
+
send(name, *args, **kwargs, &block)
|
148
|
+
end
|
149
|
+
|
150
|
+
def current_draw_context
|
151
|
+
@draw_context.dup
|
152
|
+
end
|
153
|
+
|
154
|
+
# This usually doesn't return. The display service may take control
|
155
|
+
# of the main thread. Local Webview even stops any background threads.
|
156
|
+
# However, some display libraries don't want to shut down and don't
|
157
|
+
# want to (and/or can't) take control of the event loop.
|
158
|
+
def run
|
159
|
+
if @do_shutdown
|
160
|
+
$stderr.puts "Destroy has already been signaled, but we just called Shoes::App.run!"
|
161
|
+
return
|
162
|
+
end
|
163
|
+
|
164
|
+
# The display lib can send us an event to customise the event loop handling.
|
165
|
+
# But it must do so before the "run" event returns.
|
166
|
+
send_shoes_event(event_name: "run")
|
167
|
+
|
168
|
+
case @event_loop_type
|
169
|
+
when "wait"
|
170
|
+
# Display lib wants us to busy-wait instead of it.
|
171
|
+
until @do_shutdown
|
172
|
+
Shoes::DisplayService.dispatch_event("heartbeat", nil)
|
173
|
+
end
|
174
|
+
when "displaylib"
|
175
|
+
# If run event returned, that means we're done.
|
176
|
+
destroy
|
177
|
+
when "return"
|
178
|
+
# We can just return to the main event loop. But we shouldn't call destroy.
|
179
|
+
# Presumably some event loop *outside* our event loop is handling things.
|
180
|
+
else
|
181
|
+
raise Shoes::Errors::InvalidAttributeValueError, "Internal error! Incorrect event loop type: #{@event_loop_type.inspect}!"
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
def destroy(send_event: true)
|
186
|
+
@do_shutdown = true
|
187
|
+
send_shoes_event(event_name: "destroy") if send_event
|
188
|
+
end
|
189
|
+
|
190
|
+
def all_drawables
|
191
|
+
out = []
|
192
|
+
|
193
|
+
to_add = @document_root.children
|
194
|
+
until to_add.empty?
|
195
|
+
out.concat(to_add)
|
196
|
+
to_add = to_add.flat_map { |w| w.respond_to?(:children) ? w.children : [] }.compact
|
197
|
+
end
|
198
|
+
|
199
|
+
out
|
200
|
+
end
|
201
|
+
|
202
|
+
# We can add various ways to find drawables here.
|
203
|
+
# These are sort of like Shoes selectors, used for testing.
|
204
|
+
def find_drawables_by(*specs)
|
205
|
+
drawables = all_drawables
|
206
|
+
specs.each do |spec|
|
207
|
+
if spec == Shoes::App
|
208
|
+
drawables = [Shoes::App.instance]
|
209
|
+
elsif spec.is_a?(Class)
|
210
|
+
drawables.select! { |w| spec === w }
|
211
|
+
elsif spec.is_a?(Symbol) || spec.is_a?(String)
|
212
|
+
s = spec.to_s
|
213
|
+
case s[0]
|
214
|
+
when "$"
|
215
|
+
begin
|
216
|
+
# I'm not finding a global_variable_get or similar...
|
217
|
+
global_value = eval s
|
218
|
+
drawables &= [global_value]
|
219
|
+
rescue
|
220
|
+
raise Shoes::Errors::InvalidAttributeValueError, "Error getting global variable: #{spec.inspect}"
|
221
|
+
end
|
222
|
+
when "@"
|
223
|
+
if Shoes::App.instance.instance_variables.include?(spec.to_sym)
|
224
|
+
drawables &= [self.instance_variable_get(spec)]
|
225
|
+
else
|
226
|
+
raise Shoes::Errors::InvalidAttributeValueError, "Can't find top-level instance variable: #{spec.inspect}!"
|
227
|
+
end
|
228
|
+
else
|
229
|
+
if s.start_with?("id:")
|
230
|
+
find_id = Integer(s[3..-1])
|
231
|
+
drawable = Shoes::Drawable.drawable_by_id(find_id)
|
232
|
+
drawables &= [drawable]
|
233
|
+
else
|
234
|
+
raise Shoes::Errors::InvalidAttributeValueError, "Don't know how to find drawables by #{spec.inspect}!"
|
235
|
+
end
|
236
|
+
end
|
237
|
+
else
|
238
|
+
raise(Shoes::Errors::InvalidAttributeValueError, "Don't know how to find drawables by #{spec.inspect}!")
|
239
|
+
end
|
240
|
+
end
|
241
|
+
drawables
|
242
|
+
end
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
# Event handler DSLs get defined in both App and Slot - same code, slightly different results
|
247
|
+
events = [:motion, :hover, :leave, :click, :release, :keypress, :animate, :every, :timer]
|
248
|
+
events.each do |event|
|
249
|
+
Shoes::App.define_method(event) do |*args, &block|
|
250
|
+
subscription_item(args:, shoes_api_name: event.to_s, &block)
|
251
|
+
end
|
252
|
+
Shoes::Slot.define_method(event) do |*args, &block|
|
253
|
+
subscription_item(args:, shoes_api_name: event.to_s, &block)
|
254
|
+
end
|
255
|
+
end
|
256
|
+
|
257
|
+
# These methods will need to be defined on Slots too, but probably need a rework in general.
|
258
|
+
class Shoes::App < Shoes::Drawable
|
259
|
+
def background(...)
|
260
|
+
current_slot.background(...)
|
261
|
+
end
|
262
|
+
|
263
|
+
def border(...)
|
264
|
+
current_slot.border(...)
|
265
|
+
end
|
266
|
+
|
267
|
+
# Draw context methods
|
268
|
+
|
269
|
+
def fill(color)
|
270
|
+
@draw_context["fill"] = color
|
271
|
+
end
|
272
|
+
|
273
|
+
def nofill
|
274
|
+
@draw_context["fill"] = ""
|
275
|
+
end
|
276
|
+
|
277
|
+
def stroke(color)
|
278
|
+
@draw_context["stroke"] = color
|
279
|
+
end
|
280
|
+
|
281
|
+
def nostroke
|
282
|
+
@draw_context["stroke"] = ""
|
283
|
+
end
|
284
|
+
|
285
|
+
# Shape DSL methods
|
286
|
+
|
287
|
+
def move_to(x, y)
|
288
|
+
raise(Shoes::Errors::InvalidAttributeValueError, "Pass only Numeric arguments to move_to!") unless x.is_a?(Numeric) && y.is_a?(Numeric)
|
289
|
+
|
290
|
+
if current_slot.is_a?(::Shoes::Shape)
|
291
|
+
current_slot.add_shape_command(["move_to", x, y])
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
def line_to(x, y)
|
296
|
+
raise(Shoes::Errors::InvalidAttributeValueError, "Pass only Numeric arguments to line_to!") unless x.is_a?(Numeric) && y.is_a?(Numeric)
|
297
|
+
|
298
|
+
if current_slot.is_a?(::Shoes::Shape)
|
299
|
+
current_slot.add_shape_command(["line_to", x, y])
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
303
|
+
def rotate(angle)
|
304
|
+
@draw_context["rotate"] = angle
|
305
|
+
end
|
306
|
+
# Not implemented yet: curve_to, arc_to
|
307
|
+
|
308
|
+
alias_method :info, :puts
|
309
|
+
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
class
|
3
|
+
class Shoes
|
4
4
|
module Background
|
5
5
|
def self.included(includer)
|
6
|
-
includer.
|
6
|
+
includer.shoes_style(:background_color)
|
7
7
|
end
|
8
8
|
|
9
9
|
# NOTE: this needs to be passed through in order for the styling to work
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Shoes has a number of built-in methods that are intended to be available everywhere,
|
4
|
+
# in every Shoes and non-Shoes class, for every Shoes app.
|
5
|
+
module Shoes::Builtins
|
6
|
+
# Register the given font with Shoes so that text that wants it can use it.
|
7
|
+
# Also add it to the FONTS constant.
|
8
|
+
#
|
9
|
+
# @param font_file_or_url [String] the filename or URL for the font
|
10
|
+
# @return [void]
|
11
|
+
def font(font_file_or_url)
|
12
|
+
shoes_builtin("font", font_file_or_url)
|
13
|
+
|
14
|
+
font_name = File.basename(font_file_or_url, ".*")
|
15
|
+
Shoes::FONTS << font_name
|
16
|
+
end
|
17
|
+
|
18
|
+
def ask(message_string)
|
19
|
+
shoes_builtin("ask", message_string)
|
20
|
+
end
|
21
|
+
|
22
|
+
def alert(message)
|
23
|
+
shoes_builtin("alert", message)
|
24
|
+
end
|
25
|
+
|
26
|
+
def ask_color(title_bar)
|
27
|
+
shoes_builtin("ask_color", title_bar)
|
28
|
+
end
|
29
|
+
|
30
|
+
def ask_open_file()
|
31
|
+
shoes_builtin("ask_open_file")
|
32
|
+
end
|
33
|
+
|
34
|
+
def ask_save_file()
|
35
|
+
shoes_builtin("ask_save_file")
|
36
|
+
end
|
37
|
+
|
38
|
+
def ask_open_folder()
|
39
|
+
shoes_builtin("ask_open_folder")
|
40
|
+
end
|
41
|
+
|
42
|
+
def ask_save_folder()
|
43
|
+
shoes_builtin("ask_save_folder")
|
44
|
+
end
|
45
|
+
|
46
|
+
def confirm(question)
|
47
|
+
shoes_builtin("confirm", question)
|
48
|
+
end
|
49
|
+
|
50
|
+
# TO ADD: debug, error, info, warn
|
51
|
+
# TO VERIFY OR ADD: gradient, gray, rgb
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def shoes_builtin(cmd_name, *args)
|
56
|
+
Shoes::DisplayService.dispatch_event("builtin", nil, cmd_name, args)
|
57
|
+
nil
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
module Kernel
|
62
|
+
include Shoes::Builtins
|
63
|
+
end
|