lacci 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rubocop.yml +85 -0
- data/.ruby-version +1 -0
- data/.vscode/extensions.json +5 -0
- data/.yardopts +12 -0
- data/CHANGELOG.md +19 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/CONTRIBUTING.md +20 -0
- data/Gemfile +24 -0
- data/LICENSE.txt +21 -0
- data/README.md +178 -0
- data/Rakefile +15 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/dev.yml +7 -0
- data/docs/static/PKGBUILD +47 -0
- data/docs/static/Shoes.icns +0 -0
- data/docs/static/avatar.png +0 -0
- data/docs/static/code_highlighter.js +188 -0
- data/docs/static/code_highlighter_ruby.js +26 -0
- data/docs/static/icon-debug.png +0 -0
- data/docs/static/icon-error.png +0 -0
- data/docs/static/icon-info.png +0 -0
- data/docs/static/icon-warn.png +0 -0
- data/docs/static/listbox_button1.png +0 -0
- data/docs/static/listbox_button2.png +0 -0
- data/docs/static/man-app.png +0 -0
- data/docs/static/man-builds.png +0 -0
- data/docs/static/man-builds1.png +0 -0
- data/docs/static/man-editor-notepad.png +0 -0
- data/docs/static/man-editor-osx.png +0 -0
- data/docs/static/man-ele-background.png +0 -0
- data/docs/static/man-ele-border.png +0 -0
- data/docs/static/man-ele-button.png +0 -0
- data/docs/static/man-ele-check.png +0 -0
- data/docs/static/man-ele-editbox.png +0 -0
- data/docs/static/man-ele-editline.png +0 -0
- data/docs/static/man-ele-image.png +0 -0
- data/docs/static/man-ele-listbox.png +0 -0
- data/docs/static/man-ele-progress.png +0 -0
- data/docs/static/man-ele-radio.png +0 -0
- data/docs/static/man-ele-shape.png +0 -0
- data/docs/static/man-ele-textblock.png +0 -0
- data/docs/static/man-ele-video.png +0 -0
- data/docs/static/man-intro-dmg.png +0 -0
- data/docs/static/man-intro-exe.png +0 -0
- data/docs/static/man-look-tiger.png +0 -0
- data/docs/static/man-look-ubuntu.png +0 -0
- data/docs/static/man-look-vista.png +0 -0
- data/docs/static/man-run-osx.png +0 -0
- data/docs/static/man-run-vista.png +0 -0
- data/docs/static/man-run-xp.png +0 -0
- data/docs/static/man-shot1.png +0 -0
- data/docs/static/manual-en.txt +3529 -0
- data/docs/static/manual-ja.txt +2829 -0
- data/docs/static/manual.css +171 -0
- data/docs/static/manual.md +3528 -0
- data/docs/static/menu-corner1.png +0 -0
- data/docs/static/menu-corner2.png +0 -0
- data/docs/static/menu-gray.png +0 -0
- data/docs/static/menu-left.png +0 -0
- data/docs/static/menu-right.png +0 -0
- data/docs/static/menu-top.png +0 -0
- data/docs/static/shoes-dmg.jpg +0 -0
- data/docs/static/shoes-icon-blue.png +0 -0
- data/docs/static/shoes-icon.png +0 -0
- data/docs/static/shoes-manual-apps.gif +0 -0
- data/docs/static/shoes_main_window.png +0 -0
- data/docs/static/stripe.png +0 -0
- data/docs/static/stubs/blank.exe +0 -0
- data/docs/static/stubs/blank.hfz +0 -0
- data/docs/static/stubs/blank.run +375 -0
- data/docs/static/stubs/cocoa-install +0 -0
- data/docs/static/stubs/sh-install +49 -0
- data/docs/static/stubs/shoes-stub-inject.exe +0 -0
- data/docs/static/stubs/shoes-stub.exe +0 -0
- data/docs/static/tutor-back.png +0 -0
- 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/backdround_with_image.rb +16 -0
- data/examples/bloopsaphone/working/1901_by_Aanand_Prasad.rb +478 -0
- data/examples/bloopsaphone/working/b1.rb +64 -0
- data/examples/bloopsaphone/working/b2.rb +36 -0
- data/examples/bloopsaphone/working/bloops_test.rb +41 -0
- data/examples/bloopsaphone/working/bloopsaphone_theme_song_by_why.rb +31 -0
- data/examples/bloopsaphone/working/feepogram.rb +67 -0
- data/examples/bloopsaphone/working/simpsons_theme_song_by_why.rb +14 -0
- data/examples/bloopsaphone/working/tune_cheeky_drat.rb +210 -0
- data/examples/button.rb +10 -0
- data/examples/button_alert.rb +6 -0
- data/examples/button_go_away.rb +6 -0
- data/examples/button_with_position_and_size.rb +7 -0
- data/examples/coffee.rb +14 -0
- data/examples/download.rb +5 -0
- data/examples/download_and_show_image.rb +28 -0
- data/examples/edit_box.rb +8 -0
- data/examples/edit_line.rb +8 -0
- data/examples/fill.rb +25 -0
- data/examples/flow.rb +11 -0
- data/examples/fonts.rb +6 -0
- data/examples/gen.rb +140 -0
- data/examples/get_headers.rb +10 -0
- data/examples/hello_world.rb +3 -0
- data/examples/highlander.rb +87 -0
- data/examples/image/clickable_image.rb +5 -0
- data/examples/image/image.rb +3 -0
- data/examples/image/image_size.rb +7 -0
- data/examples/image/image_with_position_and_size.rb +3 -0
- data/examples/info.rb +9 -0
- data/examples/legacy/not_checked/expert/colours.rb +105 -0
- data/examples/legacy/not_checked/expert/curve-animation.rb +31 -0
- data/examples/legacy/not_checked/expert/curve-control-point.rb +51 -0
- data/examples/legacy/not_checked/expert/custom-list-box.rb +53 -0
- data/examples/legacy/not_checked/expert/definr.rb +23 -0
- data/examples/legacy/not_checked/expert/funnies.rb +56 -0
- data/examples/legacy/not_checked/expert/minesweeper.rb +267 -0
- data/examples/legacy/not_checked/expert/othello.rb +318 -0
- data/examples/legacy/not_checked/expert/pong.rb +62 -0
- data/examples/legacy/not_checked/expert/tankspank.rb +385 -0
- data/examples/legacy/not_checked/expert/tooltips.rb +45 -0
- data/examples/legacy/not_checked/expert/url.rb +37 -0
- data/examples/legacy/not_checked/expert/video-player.rb +256 -0
- data/examples/legacy/not_checked/good/_why-stories.rb +44 -0
- data/examples/legacy/not_checked/good/_why-stories.yaml +387 -0
- data/examples/legacy/not_checked/good/arc.rb +37 -0
- data/examples/legacy/not_checked/good/cardflip.rb +141 -0
- data/examples/legacy/not_checked/good/clock.rb +51 -0
- data/examples/legacy/not_checked/good/console.rb +21 -0
- data/examples/legacy/not_checked/good/follow.rb +26 -0
- data/examples/legacy/not_checked/good/image-rotate.rb +14 -0
- data/examples/legacy/not_checked/good/paris.svg +7236 -0
- data/examples/legacy/not_checked/good/path-animation.rb +46 -0
- data/examples/legacy/not_checked/good/plots.rb +100 -0
- data/examples/legacy/not_checked/good/reminder.rb +174 -0
- data/examples/legacy/not_checked/good/svgview.rb +113 -0
- data/examples/legacy/not_checked/good/vjot.rb +56 -0
- data/examples/legacy/not_checked/shoes-contrib/.gitignore +2 -0
- data/examples/legacy/not_checked/shoes-contrib/README.md +34 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/animate-ovals.rb +21 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/flowers.rb +59 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/happy-trails.rb +31 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/mice-satellites.rb +27 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/oval-motion.rb +12 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/pink-bubbles.rb +34 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/pulsate.rb +18 -0
- data/examples/legacy/not_checked/shoes-contrib/animation/rotating-star.rb +18 -0
- data/examples/legacy/not_checked/shoes-contrib/app/download-and-save.rb +11 -0
- data/examples/legacy/not_checked/shoes-contrib/app/download.rb +10 -0
- data/examples/legacy/not_checked/shoes-contrib/app/get-google.rb +11 -0
- data/examples/legacy/not_checked/shoes-contrib/app/mouse-detection.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/app/resizeable-false.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/art/bubble-bullseye.rb +23 -0
- data/examples/legacy/not_checked/shoes-contrib/art/faded.rb +17 -0
- data/examples/legacy/not_checked/shoes-contrib/art/fill-oval.rb +5 -0
- data/examples/legacy/not_checked/shoes-contrib/art/mask.rb +15 -0
- data/examples/legacy/not_checked/shoes-contrib/art/oval-gradient.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/art/star-gradient.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/basic-edit-box.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/basic-new-window.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/basic-oval-image.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/basic-oval-shape.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/basic-oval.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/class-book.rb +43 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/class-book.yaml +387 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/clock.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/edit-stack +14 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/gradient-shoes.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/list_box-shape-report.rb +19 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/rect-arrow.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/scribble.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/search.rb +32 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/shoes-notes.rb +16 -0
- data/examples/legacy/not_checked/shoes-contrib/basic/url-shoes-subclassing.rb +24 -0
- data/examples/legacy/not_checked/shoes-contrib/browser.rb +21 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/background-column.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/background.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/basic-fps.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/border-cat.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/button-block.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/check-mate.rb +15 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/common-styles.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/displace-animation.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/edit_box-character-count.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/edit_line-character-count.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/image-icon.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/list_box-select-class.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/list_box.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/move-flow-animate.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/phat-button.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/popup.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/progress-bar.rb +10 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/radio-dreamcast-favs.rb +17 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/timer.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/elements/width-introspec.rb +8 -0
- data/examples/legacy/not_checked/shoes-contrib/events/background-hover.rb +11 -0
- data/examples/legacy/not_checked/shoes-contrib/events/motion-detect.rb +9 -0
- data/examples/legacy/not_checked/shoes-contrib/events/pressed-key.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/expert/expert-funnies.rb +51 -0
- data/examples/legacy/not_checked/shoes-contrib/expert/expert-irb.rb +112 -0
- data/examples/legacy/not_checked/shoes-contrib/expert/expert-othello.rb +319 -0
- data/examples/legacy/not_checked/shoes-contrib/good/good-arc.rb +37 -0
- data/examples/legacy/not_checked/shoes-contrib/good/good-clock.rb +51 -0
- data/examples/legacy/not_checked/shoes-contrib/good/good-follow.rb +26 -0
- data/examples/legacy/not_checked/shoes-contrib/good/good-reminder.rb +174 -0
- data/examples/legacy/not_checked/shoes-contrib/good/good-vjot.rb +56 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/ask.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/ask_color.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/ask_open_file.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/ask_save_file.rb +7 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/confirm.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/debug.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/exit.rb +5 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/font.rb +5 -0
- data/examples/legacy/not_checked/shoes-contrib/kernel/fonts.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/manipulation/append-slot.rb +9 -0
- data/examples/legacy/not_checked/shoes-contrib/manipulation/clear-slot.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/manipulation/prepend-slot.rb +6 -0
- data/examples/legacy/not_checked/shoes-contrib/manipulation/roll.rb +17 -0
- data/examples/legacy/not_checked/shoes-contrib/position/gutter-margin.rb +5 -0
- data/examples/legacy/not_checked/shoes-contrib/position/stack-width.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-accordion.rb +75 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-anim-shapes.rb +17 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-anim-text.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-arc.rb +23 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-bounce.rb +24 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-calc.rb +70 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-chipmunk.rb +26 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-control-sizes.rb +24 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-curve.rb +26 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-dialogs.rb +29 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-downloader.rb +27 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-draw.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-editor.rb +28 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-form.rb +28 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-form.shy +0 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-mask.rb +21 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-menu.rb +31 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-menu1.rb +35 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-rubygems.rb +29 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-slide.rb +45 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-sphere.rb +28 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-sqlite3.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-timer.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/simple/simple-video.rb +13 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/alignment.rb +4 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/attachment.rb +5 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/emphasis.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/gradient-angle.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/para-methods.rb +5 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/para-red-underlined.rb +3 -0
- data/examples/legacy/not_checked/shoes-contrib/styles/para-style-method.rb +4 -0
- data/examples/legacy/not_checked/shoes-dep-samples/expert-game-of-life.rb +243 -0
- data/examples/legacy/not_checked/shoes-dep-samples/expert-othello.rb +319 -0
- data/examples/legacy/not_checked/shoes-dep-samples/good-clock.rb +51 -0
- data/examples/legacy/not_checked/shoes-dep-samples/good-follow.rb +26 -0
- data/examples/legacy/not_checked/shoes-dep-samples/good-reminder.rb +174 -0
- data/examples/legacy/not_checked/shoes-dep-samples/good-vjot.rb +56 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-accordion.rb +75 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-anim-shapes.rb +17 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-anim-text.rb +13 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-arc.rb +23 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-bounce.rb +24 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-calc.rb +70 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-chipmunk.rb +26 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-control-sizes.rb +24 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-curve.rb +26 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-dialogs.rb +29 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-draw.rb +13 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-editor.rb +28 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-form.rb +28 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-form.shy +0 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-mask.rb +21 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-menu.rb +31 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-menu1.rb +35 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-rubygems.rb +29 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-slide.rb +45 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-sphere.rb +28 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-sqlite3.rb +13 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-timer.rb +13 -0
- data/examples/legacy/not_checked/shoes-dep-samples/simple-video.rb +13 -0
- data/examples/legacy/not_checked/shoes3-tests/AnemicCinema1926marcelDuchampCut.mp4 +0 -0
- data/examples/legacy/not_checked/shoes3-tests/button/button.rb +53 -0
- data/examples/legacy/not_checked/shoes3-tests/cache/cache.rb +41 -0
- data/examples/legacy/not_checked/shoes3-tests/combo/combo.rb +24 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/bare.rb +34 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/downloader.rb +40 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/m1.rb +11 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/m2.rb +12 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/m3.rb +11 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/m4.rb +5 -0
- data/examples/legacy/not_checked/shoes3-tests/curl/typ.rb +30 -0
- data/examples/legacy/not_checked/shoes3-tests/cursor/c1.rb +21 -0
- data/examples/legacy/not_checked/shoes3-tests/decoration.rb +14 -0
- data/examples/legacy/not_checked/shoes3-tests/dialogs/ask.rb +6 -0
- data/examples/legacy/not_checked/shoes3-tests/dialogs/confirm.rb +6 -0
- data/examples/legacy/not_checked/shoes3-tests/editbox/editbox.rb +36 -0
- data/examples/legacy/not_checked/shoes3-tests/editline/editline.rb +27 -0
- data/examples/legacy/not_checked/shoes3-tests/events/button.rb +32 -0
- data/examples/legacy/not_checked/shoes3-tests/events/button.yaml +40 -0
- data/examples/legacy/not_checked/shoes3-tests/events/capture.rb +57 -0
- data/examples/legacy/not_checked/shoes3-tests/events/chipmunk.yaml +47 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event0.rb +8 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event1.rb +51 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event1.yaml +26 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event2.rb +46 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event3.rb +44 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event4.rb +65 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event5.rb +17 -0
- data/examples/legacy/not_checked/shoes3-tests/events/event6.rb +51 -0
- data/examples/legacy/not_checked/shoes3-tests/events/replay.rb +60 -0
- data/examples/legacy/not_checked/shoes3-tests/gapp/fullscreen.rb +38 -0
- data/examples/legacy/not_checked/shoes3-tests/gapp/icon.rb +56 -0
- data/examples/legacy/not_checked/shoes3-tests/gapp/mon1.rb +46 -0
- data/examples/legacy/not_checked/shoes3-tests/gapp/settings1.rb +22 -0
- data/examples/legacy/not_checked/shoes3-tests/gapp/title1.rb +34 -0
- data/examples/legacy/not_checked/shoes3-tests/indian.m4a +0 -0
- data/examples/legacy/not_checked/shoes3-tests/menus/event.rb +33 -0
- data/examples/legacy/not_checked/shoes3-tests/menus/menu1.rb +8 -0
- data/examples/legacy/not_checked/shoes3-tests/menus/menu2.rb +25 -0
- data/examples/legacy/not_checked/shoes3-tests/menus/menu3.rb +103 -0
- data/examples/legacy/not_checked/shoes3-tests/menus/menu4.rb +41 -0
- data/examples/legacy/not_checked/shoes3-tests/menus/tests.txt +42 -0
- data/examples/legacy/not_checked/shoes3-tests/opacity.rb +13 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/^IRX.R +5219 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/^SPX +5219 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/cstest.rb +51 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr1.rb +73 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr2.rb +40 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr3.rb +47 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr4.rb +35 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr5.rb +31 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr6.rb +35 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/gr7.rb +37 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/grcsv.rb +219 -0
- data/examples/legacy/not_checked/shoes3-tests/plot/manual.rb +40 -0
- data/examples/legacy/not_checked/shoes3-tests/progress/progress.rb +29 -0
- data/examples/legacy/not_checked/shoes3-tests/radio/clear.rb +20 -0
- data/examples/legacy/not_checked/shoes3-tests/radio/group.rb +18 -0
- data/examples/legacy/not_checked/shoes3-tests/radio/multiple.rb +32 -0
- data/examples/legacy/not_checked/shoes3-tests/radio/nogroup.rb +9 -0
- data/examples/legacy/not_checked/shoes3-tests/simpletest.svg +14 -0
- data/examples/legacy/not_checked/shoes3-tests/spinner.rb +15 -0
- data/examples/legacy/not_checked/shoes3-tests/svg.rb +208 -0
- data/examples/legacy/not_checked/shoes3-tests/switch/switch.rb +28 -0
- data/examples/legacy/not_checked/shoes3-tests/systray/back.rb +20 -0
- data/examples/legacy/not_checked/shoes3-tests/systray/note.rb +17 -0
- data/examples/legacy/not_checked/shoes3-tests/terminal/cursor.rb +27 -0
- data/examples/legacy/not_checked/shoes3-tests/terminal/ed.rb +65 -0
- data/examples/legacy/not_checked/shoes3-tests/terminal/el.rb +50 -0
- data/examples/legacy/not_checked/shoes3-tests/terminal/logattr.rb +31 -0
- data/examples/legacy/not_checked/shoes3-tests/tests_color.rb +138 -0
- data/examples/legacy/not_checked/shoes3-tests/tests_svg.rb +228 -0
- data/examples/legacy/not_checked/shoes3-tests/tests_video_vlc.rb +186 -0
- data/examples/legacy/not_checked/shoes3-tests/tooltips.rb +20 -0
- data/examples/legacy/not_checked/shoes3-tests/video_vlc.rb +242 -0
- data/examples/legacy/not_checked/shoes3-tests/wheel/wheel1.rb +21 -0
- data/examples/legacy/not_checked/simple/accordion.rb +81 -0
- data/examples/legacy/not_checked/simple/anim-shapes.rb +17 -0
- data/examples/legacy/not_checked/simple/anim-text.rb +13 -0
- data/examples/legacy/not_checked/simple/arc.rb +23 -0
- data/examples/legacy/not_checked/simple/bounce.rb +24 -0
- data/examples/legacy/not_checked/simple/chipmunk.rb +26 -0
- data/examples/legacy/not_checked/simple/control-sizes.rb +24 -0
- data/examples/legacy/not_checked/simple/curve-control-points.rb +24 -0
- data/examples/legacy/not_checked/simple/curve.rb +26 -0
- data/examples/legacy/not_checked/simple/dialogs.rb +29 -0
- data/examples/legacy/not_checked/simple/downloader.rb +40 -0
- data/examples/legacy/not_checked/simple/downloader1.rb +31 -0
- data/examples/legacy/not_checked/simple/draw.rb +13 -0
- data/examples/legacy/not_checked/simple/editor.rb +28 -0
- data/examples/legacy/not_checked/simple/form.rb +30 -0
- data/examples/legacy/not_checked/simple/image.rb +21 -0
- data/examples/legacy/not_checked/simple/info.rb +78 -0
- data/examples/legacy/not_checked/simple/mask.rb +21 -0
- data/examples/legacy/not_checked/simple/mask2.rb +27 -0
- data/examples/legacy/not_checked/simple/menu.rb +31 -0
- data/examples/legacy/not_checked/simple/menu1.rb +35 -0
- data/examples/legacy/not_checked/simple/slide.rb +45 -0
- data/examples/legacy/not_checked/simple/sphere.rb +28 -0
- data/examples/legacy/not_checked/superleg.rb +244 -0
- data/examples/legacy/working/shoes-contrib/basic/a-poem.rb +24 -0
- data/examples/legacy/working/shoes-contrib/basic/basic-blocks-instances.rb +7 -0
- data/examples/legacy/working/shoes-contrib/basic/basic-blocks.rb +7 -0
- data/examples/legacy/working/shoes-contrib/basic/basic-slot.rb +8 -0
- data/examples/legacy/working/shoes-contrib/basic/intro.rb +20 -0
- data/examples/legacy/working/shoes-contrib/basic/two-column.rb +12 -0
- data/examples/legacy/working/shoes-contrib/elements/edit_box.rb +6 -0
- data/examples/legacy/working/shoes-contrib/kernel/alert.rb +3 -0
- data/examples/legacy/working/simple/calc.rb +71 -0
- data/examples/legacy/working/simple/sqlite3.rb +27 -0
- data/examples/legacy/working/simple/timer.rb +13 -0
- data/examples/line.rb +5 -0
- data/examples/link.rb +20 -0
- data/examples/list_box.rb +8 -0
- data/examples/local_fonts.rb +4 -0
- data/examples/local_images.rb +4 -0
- data/examples/motion_events.rb +20 -0
- data/examples/para/collection_of_arguments.rb +9 -0
- data/examples/para/hello_world.rb +5 -0
- data/examples/para/hide_and_show.rb +9 -0
- data/examples/para/rainbow.rb +11 -0
- data/examples/para/rainbow_2.rb +11 -0
- data/examples/para/sizes.rb +11 -0
- data/examples/para/sizes_2.rb +12 -0
- data/examples/para/strong.rb +3 -0
- data/examples/para_text_widgets.rb +4 -0
- data/examples/parse_xl_funnies.rb +58 -0
- data/examples/pirate.png +0 -0
- data/examples/raw_flow.rb +11 -0
- data/examples/ruby_racer.rb +50 -0
- data/examples/selfitude.rb +18 -0
- data/examples/shapes/arc.rb +8 -0
- data/examples/shapes/shapes.rb +8 -0
- data/examples/shapes/shapes_fill.rb +10 -0
- data/examples/shapes/star.rb +5 -0
- data/examples/shoes_school.rb +66 -0
- data/examples/shoes_splorer.rb +150 -0
- data/examples/simple_slides.rb +73 -0
- data/examples/skip_ci/parrot.rb +22 -0
- data/examples/skip_ci/say.rb +20 -0
- data/examples/sleepless.rb +26 -0
- data/examples/slots.rb +10 -0
- data/examples/spacing.rb +18 -0
- data/examples/span.rb +6 -0
- data/examples/stack/background.rb +35 -0
- data/examples/stack/border.rb +11 -0
- data/examples/stack/gradients.rb +6 -0
- data/examples/stack/raw_stack.rb +8 -0
- data/examples/stack/stack.rb +27 -0
- data/examples/text_change.rb +4 -0
- data/examples/text_sizes.rb +10 -0
- data/examples/timmy.rb +109 -0
- data/examples/title_and_resize.rb +3 -0
- data/examples/video.rb +10 -0
- data/exe/scarpe +107 -0
- data/fonts/Pacifico.ttf +0 -0
- data/lib/scarpe/alert.rb +19 -0
- data/lib/scarpe/arc.rb +49 -0
- data/lib/scarpe/background.rb +14 -0
- data/lib/scarpe/base64.rb +27 -0
- data/lib/scarpe/border.rb +16 -0
- data/lib/scarpe/button.rb +35 -0
- data/lib/scarpe/cats_cradle.rb +255 -0
- data/lib/scarpe/colors.rb +215 -0
- data/lib/scarpe/display_service.rb +185 -0
- data/lib/scarpe/document_root.rb +20 -0
- data/lib/scarpe/download.rb +123 -0
- data/lib/scarpe/edit_box.rb +29 -0
- data/lib/scarpe/edit_line.rb +25 -0
- data/lib/scarpe/fill.rb +23 -0
- data/lib/scarpe/flow.rb +18 -0
- data/lib/scarpe/font.rb +14 -0
- data/lib/scarpe/glibui/README.md +34 -0
- data/lib/scarpe/glibui/alert.rb +65 -0
- data/lib/scarpe/glibui/app.rb +27 -0
- data/lib/scarpe/glibui/background.rb +18 -0
- data/lib/scarpe/glibui/border.rb +22 -0
- data/lib/scarpe/glibui/button.rb +38 -0
- data/lib/scarpe/glibui/dimensions.rb +22 -0
- data/lib/scarpe/glibui/document_root.rb +33 -0
- data/lib/scarpe/glibui/edit_box.rb +44 -0
- data/lib/scarpe/glibui/edit_line.rb +43 -0
- data/lib/scarpe/glibui/flow.rb +33 -0
- data/lib/scarpe/glibui/html.rb +77 -0
- data/lib/scarpe/glibui/image.rb +36 -0
- data/lib/scarpe/glibui/link.rb +29 -0
- data/lib/scarpe/glibui/local_display.rb +62 -0
- data/lib/scarpe/glibui/para.rb +84 -0
- data/lib/scarpe/glibui/spacing.rb +41 -0
- data/lib/scarpe/glibui/stack.rb +33 -0
- data/lib/scarpe/glibui/text_widget.rb +30 -0
- data/lib/scarpe/glibui/widget.rb +81 -0
- data/lib/scarpe/glibui.rb +29 -0
- data/lib/scarpe/image.rb +35 -0
- data/lib/scarpe/libui/alert.rb +9 -0
- data/lib/scarpe/libui/button.rb +18 -0
- data/lib/scarpe/libui/colors.rb +157 -0
- data/lib/scarpe/libui/core.rb +66 -0
- data/lib/scarpe/libui/flow.rb +16 -0
- data/lib/scarpe/libui/libui.rb +45 -0
- data/lib/scarpe/libui/notepad.md +26 -0
- data/lib/scarpe/libui/para.rb +154 -0
- data/lib/scarpe/libui/stack.rb +34 -0
- data/lib/scarpe/line.rb +25 -0
- data/lib/scarpe/link.rb +25 -0
- data/lib/scarpe/list_box.rb +25 -0
- data/lib/scarpe/logger.rb +159 -0
- data/lib/scarpe/para.rb +92 -0
- data/lib/scarpe/promises.rb +405 -0
- data/lib/scarpe/shape.rb +20 -0
- data/lib/scarpe/slot.rb +7 -0
- data/lib/scarpe/spacing.rb +9 -0
- data/lib/scarpe/span.rb +26 -0
- data/lib/scarpe/stack.rb +20 -0
- data/lib/scarpe/star.rb +47 -0
- data/lib/scarpe/subscription_item.rb +60 -0
- data/lib/scarpe/unit_test_helpers.rb +236 -0
- data/lib/scarpe/version.rb +5 -0
- data/lib/scarpe/video.rb +15 -0
- data/lib/scarpe/widgets.rb +35 -0
- data/lib/scarpe/wv/alert.rb +65 -0
- data/lib/scarpe/wv/app.rb +104 -0
- data/lib/scarpe/wv/arc.rb +57 -0
- data/lib/scarpe/wv/background.rb +27 -0
- data/lib/scarpe/wv/border.rb +24 -0
- data/lib/scarpe/wv/button.rb +50 -0
- data/lib/scarpe/wv/control_interface.rb +147 -0
- data/lib/scarpe/wv/control_interface_test.rb +234 -0
- data/lib/scarpe/wv/dimensions.rb +22 -0
- data/lib/scarpe/wv/document_root.rb +8 -0
- data/lib/scarpe/wv/edit_box.rb +44 -0
- data/lib/scarpe/wv/edit_line.rb +43 -0
- data/lib/scarpe/wv/fill.rb +30 -0
- data/lib/scarpe/wv/flow.rb +24 -0
- data/lib/scarpe/wv/font.rb +36 -0
- data/lib/scarpe/wv/html.rb +108 -0
- data/lib/scarpe/wv/image.rb +41 -0
- data/lib/scarpe/wv/line.rb +38 -0
- data/lib/scarpe/wv/link.rb +29 -0
- data/lib/scarpe/wv/list_box.rb +50 -0
- data/lib/scarpe/wv/para.rb +90 -0
- data/lib/scarpe/wv/shape.rb +35 -0
- data/lib/scarpe/wv/shape_helper.rb +44 -0
- data/lib/scarpe/wv/slot.rb +81 -0
- data/lib/scarpe/wv/spacing.rb +41 -0
- data/lib/scarpe/wv/span.rb +66 -0
- data/lib/scarpe/wv/stack.rb +24 -0
- data/lib/scarpe/wv/star.rb +64 -0
- data/lib/scarpe/wv/subscription_item.rb +50 -0
- data/lib/scarpe/wv/text_widget.rb +30 -0
- data/lib/scarpe/wv/video.rb +42 -0
- data/lib/scarpe/wv/web_wrangler.rb +683 -0
- data/lib/scarpe/wv/webview_local_display.rb +73 -0
- data/lib/scarpe/wv/webview_relay_display.rb +185 -0
- data/lib/scarpe/wv/widget.rb +185 -0
- data/lib/scarpe/wv/wv_display_worker.rb +65 -0
- data/lib/scarpe/wv.rb +43 -0
- data/lib/scarpe/wv_local.rb +6 -0
- data/lib/scarpe/wv_relay.rb +6 -0
- data/lib/scarpe.rb +29 -0
- data/lib/shoes/app.rb +187 -0
- data/lib/shoes/constants.rb +26 -0
- data/lib/shoes/text_widget.rb +52 -0
- data/lib/shoes/widget.rb +209 -0
- data/lib/shoes.rb +65 -0
- data/logger/debug_web_wrangler.json +4 -0
- data/logger/scarpe_wv_test.json +4 -0
- data/scarpe-0.2.0.gem +0 -0
- data/scarpe.gemspec +44 -0
- data/scarpegen.rb +193 -0
- data/sig/scarpe.rbs +4 -0
- data/templates/basic_class_template.erb +38 -0
- data/templates/class_template_with_event_bind.erb +27 -0
- data/templates/class_template_with_shapes.erb +43 -0
- data/templates/example_template.erb +3 -0
- data/templates/module_template.erb +12 -0
- data/templates/webview_template.erb +27 -0
- metadata +606 -0
@@ -0,0 +1,35 @@
|
|
1
|
+
class MenuPanel < Shoes::Widget
|
2
|
+
$boxes = []
|
3
|
+
def initialize(color, args)
|
4
|
+
$boxes << self
|
5
|
+
background color
|
6
|
+
para link("Box #{$boxes.length}", :stroke => white, :fill => nil).
|
7
|
+
click { visit "/" },
|
8
|
+
:margin => 18, :align => "center", :size => 20
|
9
|
+
yield
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
Shoes.app :width => 600, :height => 130 do
|
14
|
+
style(Link, :underline => nil)
|
15
|
+
style(LinkHover, :fill => nil, :underline => nil)
|
16
|
+
|
17
|
+
expand = proc do
|
18
|
+
hover do |box|
|
19
|
+
if box.width < 170
|
20
|
+
a = animate 30 do
|
21
|
+
$boxes.each do |b|
|
22
|
+
b.width -= 5 if b != box and b.width > 140
|
23
|
+
end
|
24
|
+
box.width += 5
|
25
|
+
a.stop if box.width >= 170
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
menu_panel green, :width => 170, :height => 120, :margin => 4, &expand
|
32
|
+
menu_panel blue, :width => 140, :height => 120, :margin => 4, &expand
|
33
|
+
menu_panel red, :width => 140, :height => 120, :margin => 4, &expand
|
34
|
+
menu_panel purple, :width => 140, :height => 120, :margin => 4, &expand
|
35
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
#
|
2
|
+
# The setup block will install gems before launching the
|
3
|
+
# rest of the app below it.
|
4
|
+
#
|
5
|
+
Shoes.setup do
|
6
|
+
gem 'bluecloth =2.0.6'
|
7
|
+
gem 'metaid'
|
8
|
+
end
|
9
|
+
|
10
|
+
require 'bluecloth'
|
11
|
+
require 'metaid'
|
12
|
+
|
13
|
+
Shoes.app :width => 300, :height => 400, :resizable => false do
|
14
|
+
background "#eed"
|
15
|
+
|
16
|
+
stack :margin => 40 do
|
17
|
+
tagline "Loaded Gems:", :align => "center", :underline => "single"
|
18
|
+
Gem.loaded_specs.each do |name, spec|
|
19
|
+
para "#{name}\n#{spec.version}", :align => "center"
|
20
|
+
end
|
21
|
+
|
22
|
+
caption "Total Gems: #{Gem.source_index.length}", :align => "center", :margin_bottom => 0
|
23
|
+
para "(includes unloaded gems)", :align => "center", :margin_top => 0
|
24
|
+
button "OK", :bottom => 30, :left => 0.4 do
|
25
|
+
self.close
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
#
|
2
|
+
# mimicking the mootools demo for Fx.Slide
|
3
|
+
# http://demos.mootools.net/Fx.Slide
|
4
|
+
#
|
5
|
+
Shoes.app do
|
6
|
+
def stop_anim
|
7
|
+
@anim.stop
|
8
|
+
@anim = nil
|
9
|
+
end
|
10
|
+
def slide_anim &blk
|
11
|
+
stop_anim if @anim
|
12
|
+
@anim = animate 30, &blk
|
13
|
+
end
|
14
|
+
def slide_out slot
|
15
|
+
slide_anim do |i|
|
16
|
+
slot.height = 150 - (i * 3)
|
17
|
+
slot.contents[0].top = -i * 3
|
18
|
+
if slot.height == 0
|
19
|
+
stop_anim
|
20
|
+
slot.hide
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
def slide_in slot
|
25
|
+
slot.show
|
26
|
+
slide_anim do |i|
|
27
|
+
slot.height = i * 6
|
28
|
+
slot.contents[0].top = slot.height - 150
|
29
|
+
stop_anim if slot.height == 150
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
background white
|
34
|
+
stack :margin => 10 do
|
35
|
+
para link("slide out") { slide_out @lipsum }, " | ",
|
36
|
+
link("slide in") { slide_in @lipsum }
|
37
|
+
@lipsum = stack :width => 1.0, :height => 150 do
|
38
|
+
stack do
|
39
|
+
background "#ddd"
|
40
|
+
border "#eee", :strokewidth => 5
|
41
|
+
para "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", :margin => 10
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Shoes.app :width => 500, :height => 500, :resizable => false do
|
2
|
+
image 400, 470, :top => 30, :left => 50 do
|
3
|
+
nostroke
|
4
|
+
fill "#127"
|
5
|
+
image :top => 230, :left => 0 do
|
6
|
+
oval 70, 130, 260, 40
|
7
|
+
blur 30
|
8
|
+
end
|
9
|
+
oval 10, 10, 380, 380
|
10
|
+
image :top => 0, :left => 0 do
|
11
|
+
fill "#46D"
|
12
|
+
oval 30, 30, 338, 338
|
13
|
+
blur 10
|
14
|
+
end
|
15
|
+
fill gradient(rgb(1.0, 1.0, 1.0, 0.7), rgb(1.0, 1.0, 1.0, 0.0))
|
16
|
+
oval 80, 14, 240, 176
|
17
|
+
image :top => 0, :left => 0 do
|
18
|
+
fill "#79F"
|
19
|
+
oval 134, 134, 130, 130
|
20
|
+
blur 40
|
21
|
+
end
|
22
|
+
image :top => 150, :left => 40, :width => 320, :height => 260 do
|
23
|
+
fill gradient(rgb(0.7, 0.9, 1.0, 0.0), rgb(0.7, 0.9, 1.0, 0.6))
|
24
|
+
oval 60, 60, 200, 136
|
25
|
+
blur 20
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'sqlite3'
|
2
|
+
Shoes.app :width => 350, :height => 130 do
|
3
|
+
db = SQLite3::Database.new "simple-sqlite3.db"
|
4
|
+
db.execute "create table t1 (t1key INTEGER PRIMARY KEY,data " \
|
5
|
+
"TEXT,num double,timeEnter DATE)"
|
6
|
+
db.execute "insert into t1 (data,num) values ('This is sample data',3)"
|
7
|
+
db.execute "insert into t1 (data,num) values ('More sample data',6)"
|
8
|
+
db.execute "insert into t1 (data,num) values ('Aurélio, Küng, Stärk, Uña, Łuksza',6)"
|
9
|
+
db.execute "insert into t1 (data,num) values ('And a little more',9)"
|
10
|
+
rows = db.execute "select * from t1"
|
11
|
+
rows.each{|k, d, n| para "#{k} : #{d} : #{n}\n"}
|
12
|
+
end
|
13
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Shoes.app :height => 150, :width => 250 do
|
2
|
+
background rgb(240, 250, 208)
|
3
|
+
stack :margin => 10 do
|
4
|
+
button "Start" do
|
5
|
+
@time = Time.now
|
6
|
+
@label.replace "Stop watch started at #@time"
|
7
|
+
end
|
8
|
+
button "Stop" do
|
9
|
+
@label.replace "Stopped, ", strong("#{Time.now - @time}"), " seconds elapsed."
|
10
|
+
end
|
11
|
+
@label = para "Press ", strong("start"), " to begin timing."
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
Shoes.app :width => 408, :height => 346, :resizable => false do
|
2
|
+
background "#eee"
|
3
|
+
stack :margin => 4 do
|
4
|
+
@vid = video "http://www.rin-shun.com/shoes/AdventureTimewithFinnandJakeFinnTime.mp4"
|
5
|
+
end
|
6
|
+
para "controls: ",
|
7
|
+
link("play") { @vid.play }, ", ",
|
8
|
+
link("pause") { @vid.pause }, ", ",
|
9
|
+
link("stop") { @vid.stop }, ", ",
|
10
|
+
link("hide") { @vid.hide }, ", ",
|
11
|
+
link("show") { @vid.show }, ", ",
|
12
|
+
link("+5 sec") { @vid.time += 5000 }
|
13
|
+
end
|
Binary file
|
@@ -0,0 +1,53 @@
|
|
1
|
+
Shoes.app width: 600, height: 500 do
|
2
|
+
stack do
|
3
|
+
para "Quick fun"
|
4
|
+
flow do
|
5
|
+
button "Button", font: "Menlo Bold 14",width: 200, stroke: red,
|
6
|
+
tooltip: "Menlo Bold 14" do
|
7
|
+
para "menlo bold button"
|
8
|
+
end
|
9
|
+
button "icon", width: 80, height: 30, icon: "#{DIR}/static/icon-info.png",
|
10
|
+
tooltip: "default right", stroke: blue do
|
11
|
+
end
|
12
|
+
end
|
13
|
+
para "What is normal?"
|
14
|
+
flow do
|
15
|
+
button "Normal", tooltip: "Normal" do para "normal 1" end
|
16
|
+
button "Normal", tooltip: "Arial 12", font: "Arial 12" do para "normal 2" end
|
17
|
+
end
|
18
|
+
para "try some font names"
|
19
|
+
flow do
|
20
|
+
button "Curry", font: "Courier New Italic 12",
|
21
|
+
tooltip: "Courier New Italic 12" do end
|
22
|
+
button "Short", font: "Monaco 17", tooltip: "Monaco 17" do end
|
23
|
+
end
|
24
|
+
para "testing icon/title interactions"
|
25
|
+
flow do
|
26
|
+
button "left", width: 80, icon: "#{DIR}/static/icon-info.png",
|
27
|
+
icon_pos: "left", tooltip: "title left" do
|
28
|
+
para "left image"
|
29
|
+
end
|
30
|
+
button width: 80, icon: "#{DIR}/static/icon-info.png",
|
31
|
+
tooltip: "just icon" do
|
32
|
+
para "icon only"
|
33
|
+
end
|
34
|
+
button "right", width: 80, icon: "#{DIR}/static/icon-info.png",
|
35
|
+
icon_pos: "right" do
|
36
|
+
para "right image"
|
37
|
+
end
|
38
|
+
button "top", width: 80, height: 45, icon: "#{DIR}/static/icon-info.png",
|
39
|
+
icon_pos: "top" do
|
40
|
+
para "top image"
|
41
|
+
end
|
42
|
+
button "bottom", width: 80, height: 45, icon: "#{DIR}/static/icon-info.png",
|
43
|
+
icon_pos: "bottom" do
|
44
|
+
para "bottom image"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
para "testing defaults"
|
48
|
+
flow do
|
49
|
+
button "Fail 1", tooltip: "size missing", font: "Monaco" do end
|
50
|
+
button "Fail 2", tooltip: "unknown font", font: "missing font 12" do end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
require 'shoes/data'
|
3
|
+
require 'shoes/image'
|
4
|
+
stack do
|
5
|
+
flow do
|
6
|
+
#@el = edit_line "#{DIR}/static/shoes-icon-walkabout.png"
|
7
|
+
@el = edit_line "https://shoes.mvmanila.com/public/images/dino.jpg"
|
8
|
+
@cb = check; para "Cached?"
|
9
|
+
button "(Re)load" do
|
10
|
+
@img.clear
|
11
|
+
@img.append do
|
12
|
+
image @el.text, cache: @cb.checked
|
13
|
+
end
|
14
|
+
end
|
15
|
+
button "Show external cache" do
|
16
|
+
@cview.clear
|
17
|
+
@cview.append do
|
18
|
+
eb = edit_box width: 400
|
19
|
+
DATABASE.each do |key, value|
|
20
|
+
eb.append "#{key} -> #{value}"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
button "clear all caches" do
|
25
|
+
app.cache_clear :all
|
26
|
+
quit if confirm "Please restart Shoes for best results"
|
27
|
+
end
|
28
|
+
para "Global cache: "
|
29
|
+
@sw = switch width: 80 do |n|
|
30
|
+
app.cache = n.active?
|
31
|
+
@cb.checked = n.active?
|
32
|
+
end
|
33
|
+
end
|
34
|
+
@img = flow {}
|
35
|
+
@cview = flow {}
|
36
|
+
end
|
37
|
+
start do
|
38
|
+
@sw.active = app.cache
|
39
|
+
@cb.checked = app.cache
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
Shoes.app height: 200, width: 300 do
|
2
|
+
stack do
|
3
|
+
flow do
|
4
|
+
para "Normal "
|
5
|
+
list_box :items => ["one", "two", "three"], choose: "two", tooltip:
|
6
|
+
"normal combo"
|
7
|
+
end
|
8
|
+
flow do
|
9
|
+
para "Font "
|
10
|
+
list_box items: ["Alpha", "Bravo", "Charlie"], font: "Monaco 9",
|
11
|
+
choose: "Bravo", tooltip: "monaco 9 font"
|
12
|
+
end
|
13
|
+
flow do
|
14
|
+
para "Stroke "
|
15
|
+
list_box items: ["Ask", "your", "mother!"], choose: "your", stroke: red,
|
16
|
+
tooltip: "stroke red"
|
17
|
+
end
|
18
|
+
flow do
|
19
|
+
para "Both "
|
20
|
+
list_box items: ["Quoth", "the", "Raven"], font: "Helvitica Italic 16", stroke: blue,
|
21
|
+
tooltip: "blue Helvetica Italic 16", choose: "Quoth"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
background "#eee"
|
3
|
+
@list = stack do
|
4
|
+
para "Enter a URL to download:", :margin => [10, 8, 10, 0]
|
5
|
+
flow :margin => 10 do
|
6
|
+
@url = edit_line :width => -120
|
7
|
+
#@url.text ='http://walkabout.mvmanila.com/public/share/test-csv.tgz'
|
8
|
+
@url.text ='http://walkabout.mvmanila.com/public/share/Ytm-2.exe'
|
9
|
+
st_time = 0
|
10
|
+
end_time = 0
|
11
|
+
totalsz = 0
|
12
|
+
button "Download", :width => 120 do
|
13
|
+
st_time = Time.now
|
14
|
+
@list.append do
|
15
|
+
stack do
|
16
|
+
background "#eee".."#ccd"
|
17
|
+
stack :margin => 10 do
|
18
|
+
dld = nil
|
19
|
+
para @url.text, " [", link("cancel") { dld.abort }, "]", :margin => 0
|
20
|
+
d = inscription "Beginning transfer.", :margin => 0
|
21
|
+
dld = download @url.text, :save => File.basename(@url.text),
|
22
|
+
:finish => proc { |dl|
|
23
|
+
end_time = Time.now
|
24
|
+
secs = (end_time.to_i - st_time.to_i)
|
25
|
+
kb = dl.length < 1024 ? 1: dl.length / 1024
|
26
|
+
d.text = "Download completed KB/s: #{kb/secs} secs: #{secs}"
|
27
|
+
}
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
background "#eee"
|
3
|
+
@list = stack do
|
4
|
+
para "Enter a URL to download:", :margin => [10, 8, 10, 0]
|
5
|
+
flow :margin => 10 do
|
6
|
+
@url = edit_line :width => -120
|
7
|
+
@url.text ='http://walkabout.mvmanila.com/public/share/Ytm-2.exe'
|
8
|
+
st_time = 0
|
9
|
+
end_time = 0
|
10
|
+
totalsz = 0
|
11
|
+
button "Download", :width => 120 do
|
12
|
+
st_time = Time.now
|
13
|
+
@list.append do
|
14
|
+
stack do
|
15
|
+
background "#eee".."#ccd"
|
16
|
+
stack :margin => 10 do
|
17
|
+
dld = nil
|
18
|
+
para @url.text, " [", link("cancel") { @dld.abort }, "]", :margin => 0
|
19
|
+
d = inscription "Beginning transfer.", :margin => 0
|
20
|
+
p = progress :width => 1.0, :height => 14
|
21
|
+
@dld = download @url.text, :save => File.basename(@url.text),
|
22
|
+
:pause => 0.02,
|
23
|
+
:progress => proc { |dl|
|
24
|
+
d.text = "Transferred #{dl.transferred} of #{dl.length} bytes (#{dl.percent.to_s[0..6]}%)"
|
25
|
+
p.fraction = dl.percent
|
26
|
+
},
|
27
|
+
:finish => proc { |dl|
|
28
|
+
end_time = Time.now
|
29
|
+
secs = (end_time.to_i - st_time.to_i)
|
30
|
+
kb = dl.length < 1024 ? 1: dl.length / 1024
|
31
|
+
d.text = "Download completed KB/s: #{kb/secs} seconds:#{secs}"
|
32
|
+
}
|
33
|
+
para "Should appear after button press"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
stack do
|
3
|
+
title "Searching Google", :size => 16
|
4
|
+
@status = para "One moment..."
|
5
|
+
|
6
|
+
# Search Google for 'shoes' and print the HTTP headers
|
7
|
+
download "http://www.google.com/search?q=shoes" do |goog|
|
8
|
+
@status.text = "Headers: " + goog.response.headers.inspect
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'typhoeus'
|
2
|
+
Shoes.app do
|
3
|
+
button "typheous" do
|
4
|
+
st_time = Time.now
|
5
|
+
filesz = 0
|
6
|
+
downloaded_file = File.open 'huge.iso', 'wb'
|
7
|
+
@th = Thread.new do
|
8
|
+
request = Typhoeus::Request.new("http://walkabout.mvmanila.com/public/share/Ytm-2.exe")
|
9
|
+
request.on_headers do |response|
|
10
|
+
if response.code != 200
|
11
|
+
raise "Request failed"
|
12
|
+
end
|
13
|
+
puts "length #{response.headers['Content-Length']}"
|
14
|
+
filesz = response.headers['Content-Length'].to_i
|
15
|
+
end
|
16
|
+
request.on_body do |chunk|
|
17
|
+
$stdout.puts "."
|
18
|
+
downloaded_file.write(chunk)
|
19
|
+
end
|
20
|
+
request.on_complete do |response|
|
21
|
+
downloaded_file.close
|
22
|
+
end_time = Time.now
|
23
|
+
elapsed = end_time.to_i - st_time.to_i
|
24
|
+
$stderr.puts "Finished in #{elapsed} secs #{(filesz/1024)/elapsed} KB/s"
|
25
|
+
@th.join
|
26
|
+
end
|
27
|
+
request.run
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
stack do
|
3
|
+
para "Change cursor to"
|
4
|
+
flow do
|
5
|
+
button "arrow" do
|
6
|
+
app.cursor = :arrow_cursor
|
7
|
+
end
|
8
|
+
button "text" do
|
9
|
+
app.cursor = :text_cursor
|
10
|
+
end
|
11
|
+
button "watch" do
|
12
|
+
app.cursor = :watch_cursor
|
13
|
+
end
|
14
|
+
button "hand" do
|
15
|
+
app.cursor = :hand_cursor
|
16
|
+
end
|
17
|
+
end
|
18
|
+
para "app is #{app.class}"
|
19
|
+
para "Cursor is #{app.cursor.inspect}"
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
stack do
|
3
|
+
para "Test decorations - title bar, resize controls"
|
4
|
+
button "remove" do
|
5
|
+
app.decorated = false
|
6
|
+
@p.text = app.decorated? ? "True" : "False"
|
7
|
+
end
|
8
|
+
button "restore" do
|
9
|
+
app.decorated = true
|
10
|
+
@p.text = app.decorated? ? "True" : "False"
|
11
|
+
end
|
12
|
+
@p = para "True"
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Shoes.app height: 500, width: 300 do
|
2
|
+
stack do
|
3
|
+
flow do
|
4
|
+
para "Normal "
|
5
|
+
@eb1 = edit_box "Normal", tooltip: "normal"
|
6
|
+
end
|
7
|
+
flow do
|
8
|
+
para "Font "
|
9
|
+
@eb2 = edit_box "Font Is?", font: "Monaco 9", tooltip: "monaco 9",
|
10
|
+
width: 300
|
11
|
+
end
|
12
|
+
flow do
|
13
|
+
para "Stroke "
|
14
|
+
@eb3 = edit_box "Stroke", stroke: red, tooltip: "red"
|
15
|
+
end
|
16
|
+
flow do
|
17
|
+
para "Both "
|
18
|
+
@eb4 = edit_box "Font and Stroke", font: "Monaco 14", stroke: green,
|
19
|
+
tooltip: "14pt fixed & green"
|
20
|
+
end
|
21
|
+
flow do
|
22
|
+
button "Append to" do
|
23
|
+
@eb1.append "\nAppended"
|
24
|
+
@eb2.append "\nAppended"
|
25
|
+
@eb3.append "\nAppended"
|
26
|
+
@eb4.append "\nAppended"
|
27
|
+
end
|
28
|
+
button "change all" do
|
29
|
+
@eb1.text = "I've been reset1"
|
30
|
+
@eb2.text = "I've been reset1"
|
31
|
+
@eb3.text = "I've been reset1"
|
32
|
+
@eb4.text = "I've been reset1"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Shoes.app height: 300, width: 300 do
|
2
|
+
stack do
|
3
|
+
flow do
|
4
|
+
para "Normal "
|
5
|
+
@el1 = edit_line "Normal", tooltip: "Normal"
|
6
|
+
end
|
7
|
+
flow do
|
8
|
+
para "Font "
|
9
|
+
@el2 = edit_line "Font Is?", font: "Monaco 9", tooltip: "monaco 9"
|
10
|
+
end
|
11
|
+
flow do
|
12
|
+
para "Stroke "
|
13
|
+
@el3 = edit_line "Stroke", stroke: red, tooltip: "red"
|
14
|
+
end
|
15
|
+
flow do
|
16
|
+
para "Both"
|
17
|
+
@el4 = edit_line "Stroke and Font", stroke: green, font: "Arial 14",
|
18
|
+
tooltip: "green arial 14"
|
19
|
+
end
|
20
|
+
button "change contents" do
|
21
|
+
@el1.text = "Changed!"
|
22
|
+
@el2.text = "Changed!"
|
23
|
+
@el3.text = "Changed!"
|
24
|
+
@el4.text = "Changed!"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
Shoes.app do
|
2
|
+
|
3
|
+
stack do
|
4
|
+
para "Native button test"
|
5
|
+
flow do
|
6
|
+
@btn1 = button "button 1", width: 75 do
|
7
|
+
@eb.append "button 1 clicked\n"
|
8
|
+
end
|
9
|
+
@btn2 = button "button 2" do
|
10
|
+
@eb.append "button 2 clicked\n"
|
11
|
+
end
|
12
|
+
flow do
|
13
|
+
@ck2 = check checked: true do
|
14
|
+
@eb.append "Happy: "
|
15
|
+
@eb.append "feeling good\n" if @r1.checked?
|
16
|
+
@eb.append "feeling something\n" if @r2.checked?
|
17
|
+
@eb.append "feeling low\n" if @r3.checked?
|
18
|
+
end
|
19
|
+
para "Happy?"
|
20
|
+
end
|
21
|
+
stack do
|
22
|
+
flow {@r1 = radio :happy; para "Estatic"}
|
23
|
+
flow {@r2 = radio :happy; para "So-So"}
|
24
|
+
flow {@r3 = radio :happy; para "Not really"}
|
25
|
+
end
|
26
|
+
end
|
27
|
+
@eb = edit_box width: 500, height: 350
|
28
|
+
end
|
29
|
+
click do |btn,x,y,mods|
|
30
|
+
@eb.append "click #{btn}, x: #{x}, y: #{y}. mods: #{mods}\n"
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
:context:
|
3
|
+
:app: "/home/ccoupe/Projects/shoes3/Tests/events/button.rb"
|
4
|
+
:time: 2017-12-18 23:46:58.596135799 -07:00
|
5
|
+
:events:
|
6
|
+
- :time: 2.380615873
|
7
|
+
:button: 1
|
8
|
+
:x: 0
|
9
|
+
:y: 35
|
10
|
+
:modifiers:
|
11
|
+
:object: !ruby/object:Shoes::Types::Button {}
|
12
|
+
:type: :btn_activate
|
13
|
+
- :time: 3.780337516
|
14
|
+
:button: 1
|
15
|
+
:x: 75
|
16
|
+
:y: 35
|
17
|
+
:modifiers:
|
18
|
+
:object: !ruby/object:Shoes::Types::Button {}
|
19
|
+
:type: :btn_activate
|
20
|
+
- :time: 6.24463253
|
21
|
+
:button: 1
|
22
|
+
:x: 0
|
23
|
+
:y: 100
|
24
|
+
:modifiers:
|
25
|
+
:object: !ruby/object:Shoes::Types::Radio {}
|
26
|
+
:type: :btn_activate
|
27
|
+
- :time: 6.244678214
|
28
|
+
:button: 1
|
29
|
+
:x: 0
|
30
|
+
:y: 135
|
31
|
+
:modifiers:
|
32
|
+
:object: !ruby/object:Shoes::Types::Radio {}
|
33
|
+
:type: :btn_activate
|
34
|
+
- :time: 8.060630508
|
35
|
+
:button: 1
|
36
|
+
:x: 0
|
37
|
+
:y: 65
|
38
|
+
:modifiers:
|
39
|
+
:object: !ruby/object:Shoes::Types::Check {}
|
40
|
+
:type: :btn_activate
|