glimmer-dsl-swt 4.20.13.14 → 4.20.13.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +5 -10
- data/VERSION +1 -1
- data/docs/reference/GLIMMER_SAMPLES.md +60 -2
- data/glimmer-dsl-swt.gemspec +0 -0
- data/lib/glimmer/swt/display_proxy.rb +8 -6
- data/lib/glimmer/swt/widget_proxy.rb +1 -1
- data/lib/glimmer/ui/custom_shell.rb +1 -1
- data/lib/glimmer/ui/custom_widget.rb +3 -3
- data/samples/elaborate/battleship.rb +79 -0
- data/samples/elaborate/battleship/model/cell.rb +84 -0
- data/samples/elaborate/battleship/model/game.rb +143 -0
- data/samples/elaborate/battleship/model/grid.rb +54 -0
- data/samples/elaborate/battleship/model/ship.rb +114 -0
- data/samples/elaborate/battleship/model/ship_collection.rb +56 -0
- data/samples/elaborate/battleship/view/action_panel.rb +59 -0
- data/samples/elaborate/battleship/view/cell.rb +163 -0
- data/samples/elaborate/battleship/view/grid.rb +77 -0
- data/samples/elaborate/battleship/view/ship.rb +65 -0
- data/samples/elaborate/battleship/view/ship_collection.rb +49 -0
- data/samples/elaborate/connect4.rb +4 -6
- data/samples/elaborate/connect4/model/grid.rb +11 -10
- data/samples/elaborate/klondike_solitaire/view/column_pile.rb +0 -1
- data/samples/elaborate/klondike_solitaire/view/foundation_pile.rb +0 -2
- data/samples/hello/hello_arrow.rb +67 -0
- data/samples/hello/hello_custom_shell.rb +2 -0
- data/samples/hello/hello_slider.rb +58 -0
- metadata +15 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glimmer-dsl-swt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.20.13.
|
4
|
+
version: 4.20.13.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andy Maleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -528,6 +528,17 @@ files:
|
|
528
528
|
- lib/glimmer/ui/custom_shell.rb
|
529
529
|
- lib/glimmer/ui/custom_widget.rb
|
530
530
|
- lib/glimmer/util/proc_tracker.rb
|
531
|
+
- samples/elaborate/battleship.rb
|
532
|
+
- samples/elaborate/battleship/model/cell.rb
|
533
|
+
- samples/elaborate/battleship/model/game.rb
|
534
|
+
- samples/elaborate/battleship/model/grid.rb
|
535
|
+
- samples/elaborate/battleship/model/ship.rb
|
536
|
+
- samples/elaborate/battleship/model/ship_collection.rb
|
537
|
+
- samples/elaborate/battleship/view/action_panel.rb
|
538
|
+
- samples/elaborate/battleship/view/cell.rb
|
539
|
+
- samples/elaborate/battleship/view/grid.rb
|
540
|
+
- samples/elaborate/battleship/view/ship.rb
|
541
|
+
- samples/elaborate/battleship/view/ship_collection.rb
|
531
542
|
- samples/elaborate/calculator.rb
|
532
543
|
- samples/elaborate/calculator/model/command.rb
|
533
544
|
- samples/elaborate/calculator/model/command/all_clear.rb
|
@@ -594,6 +605,7 @@ files:
|
|
594
605
|
- samples/elaborate/timer/sounds/alarm1.wav
|
595
606
|
- samples/elaborate/user_profile.rb
|
596
607
|
- samples/elaborate/weather.rb
|
608
|
+
- samples/hello/hello_arrow.rb
|
597
609
|
- samples/hello/hello_browser.rb
|
598
610
|
- samples/hello/hello_button.rb
|
599
611
|
- samples/hello/hello_c_combo.rb
|
@@ -641,6 +653,7 @@ files:
|
|
641
653
|
- samples/hello/hello_scale.rb
|
642
654
|
- samples/hello/hello_shape.rb
|
643
655
|
- samples/hello/hello_shell.rb
|
656
|
+
- samples/hello/hello_slider.rb
|
644
657
|
- samples/hello/hello_spinner.rb
|
645
658
|
- samples/hello/hello_styled_text.rb
|
646
659
|
- samples/hello/hello_tab.rb
|