glimmer-dsl-swt 4.20.13.6 → 4.20.13.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/README.md +5 -5
- data/VERSION +1 -1
- data/docs/reference/GLIMMER_SAMPLES.md +13 -0
- data/docs/reference/GLIMMER_STYLE_GUIDE.md +2 -1
- data/glimmer-dsl-swt.gemspec +0 -0
- data/lib/glimmer/rake_task/scaffold.rb +14 -14
- data/lib/glimmer/swt/custom/code_text.rb +4 -4
- data/lib/glimmer/swt/custom/shape.rb +1 -1
- data/lib/glimmer/swt/image_proxy.rb +1 -1
- data/samples/elaborate/calculator.rb +2 -2
- data/samples/elaborate/contact_manager.rb +2 -2
- data/samples/elaborate/klondike_solitaire.rb +93 -0
- data/samples/elaborate/klondike_solitaire/model/column_pile.rb +60 -0
- data/samples/elaborate/klondike_solitaire/model/dealing_pile.rb +33 -0
- data/samples/elaborate/klondike_solitaire/model/dealt_pile.rb +25 -0
- data/samples/elaborate/klondike_solitaire/model/foundation_pile.rb +40 -0
- data/samples/elaborate/klondike_solitaire/model/game.rb +37 -0
- data/samples/elaborate/klondike_solitaire/model/playing_card.rb +86 -0
- data/samples/elaborate/klondike_solitaire/view/action_panel.rb +30 -0
- data/samples/elaborate/klondike_solitaire/view/column_pile.rb +66 -0
- data/samples/elaborate/klondike_solitaire/view/dealing_pile.rb +36 -0
- data/samples/elaborate/klondike_solitaire/view/dealt_pile.rb +38 -0
- data/samples/elaborate/klondike_solitaire/view/empty_playing_card.rb +33 -0
- data/samples/elaborate/klondike_solitaire/view/foundation_pile.rb +59 -0
- data/samples/elaborate/klondike_solitaire/view/hidden_playing_card.rb +26 -0
- data/samples/elaborate/klondike_solitaire/view/playing_card.rb +35 -0
- data/samples/elaborate/klondike_solitaire/view/tableau.rb +41 -0
- data/samples/elaborate/login.rb +2 -2
- data/samples/elaborate/mandelbrot_fractal.rb +12 -12
- data/samples/elaborate/meta_sample.rb +2 -2
- data/samples/elaborate/metronome.rb +2 -2
- data/samples/elaborate/stock_ticker.rb +8 -8
- data/samples/elaborate/tetris.rb +4 -4
- data/samples/elaborate/tetris/view/bevel.rb +2 -2
- data/samples/elaborate/tetris/view/score_lane.rb +2 -2
- data/samples/elaborate/tic_tac_toe.rb +6 -6
- data/samples/elaborate/timer.rb +4 -4
- data/samples/elaborate/weather.rb +4 -4
- data/samples/hello/hello_button.rb +2 -2
- data/samples/hello/hello_c_combo.rb +2 -2
- data/samples/hello/hello_canvas.rb +4 -4
- data/samples/hello/hello_canvas_animation.rb +2 -2
- data/samples/hello/hello_canvas_data_binding.rb +2 -2
- data/samples/hello/hello_checkbox.rb +2 -2
- data/samples/hello/hello_checkbox_group.rb +2 -2
- data/samples/hello/hello_code_text.rb +2 -2
- data/samples/hello/hello_color_dialog.rb +2 -2
- data/samples/hello/hello_combo.rb +2 -2
- data/samples/hello/hello_computed.rb +14 -22
- data/samples/hello/hello_cool_bar.rb +2 -2
- data/samples/hello/hello_cursor.rb +2 -2
- data/samples/hello/hello_custom_shape.rb +2 -2
- data/samples/hello/hello_custom_shell.rb +2 -2
- data/samples/hello/hello_custom_widget.rb +4 -4
- data/samples/hello/hello_date_time.rb +2 -2
- data/samples/hello/hello_directory_dialog.rb +2 -2
- data/samples/hello/hello_file_dialog.rb +2 -2
- data/samples/hello/hello_font_dialog.rb +2 -2
- data/samples/hello/hello_group.rb +2 -2
- data/samples/hello/hello_list_multi_selection.rb +2 -2
- data/samples/hello/hello_list_single_selection.rb +2 -2
- data/samples/hello/hello_progress_bar.rb +2 -2
- data/samples/hello/hello_radio.rb +2 -2
- data/samples/hello/hello_radio_group.rb +2 -2
- data/samples/hello/hello_scale.rb +2 -2
- data/samples/hello/hello_spinner.rb +2 -2
- data/samples/hello/hello_table.rb +2 -2
- data/samples/hello/hello_text.rb +2 -2
- data/samples/hello/hello_tool_bar.rb +2 -2
- data/samples/hello/hello_tray_item.rb +2 -2
- data/samples/hello/hello_tree.rb +4 -4
- metadata +18 -2
data/samples/hello/hello_tree.rb
CHANGED
@@ -288,13 +288,13 @@ class HelloTree
|
|
288
288
|
|
289
289
|
include Glimmer::UI::CustomShell
|
290
290
|
|
291
|
-
before_body
|
291
|
+
before_body do
|
292
292
|
Employee.selected_employee = Employee.ceo
|
293
|
-
|
293
|
+
end
|
294
294
|
|
295
|
-
after_body
|
295
|
+
after_body do
|
296
296
|
@tree.items.first.expanded = true
|
297
|
-
|
297
|
+
end
|
298
298
|
|
299
299
|
body {
|
300
300
|
shell {
|
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.10
|
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-07-
|
11
|
+
date: 2021-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -545,6 +545,22 @@ files:
|
|
545
545
|
- samples/elaborate/contact_manager/contact.rb
|
546
546
|
- samples/elaborate/contact_manager/contact_manager_presenter.rb
|
547
547
|
- samples/elaborate/contact_manager/contact_repository.rb
|
548
|
+
- samples/elaborate/klondike_solitaire.rb
|
549
|
+
- samples/elaborate/klondike_solitaire/model/column_pile.rb
|
550
|
+
- samples/elaborate/klondike_solitaire/model/dealing_pile.rb
|
551
|
+
- samples/elaborate/klondike_solitaire/model/dealt_pile.rb
|
552
|
+
- samples/elaborate/klondike_solitaire/model/foundation_pile.rb
|
553
|
+
- samples/elaborate/klondike_solitaire/model/game.rb
|
554
|
+
- samples/elaborate/klondike_solitaire/model/playing_card.rb
|
555
|
+
- samples/elaborate/klondike_solitaire/view/action_panel.rb
|
556
|
+
- samples/elaborate/klondike_solitaire/view/column_pile.rb
|
557
|
+
- samples/elaborate/klondike_solitaire/view/dealing_pile.rb
|
558
|
+
- samples/elaborate/klondike_solitaire/view/dealt_pile.rb
|
559
|
+
- samples/elaborate/klondike_solitaire/view/empty_playing_card.rb
|
560
|
+
- samples/elaborate/klondike_solitaire/view/foundation_pile.rb
|
561
|
+
- samples/elaborate/klondike_solitaire/view/hidden_playing_card.rb
|
562
|
+
- samples/elaborate/klondike_solitaire/view/playing_card.rb
|
563
|
+
- samples/elaborate/klondike_solitaire/view/tableau.rb
|
548
564
|
- samples/elaborate/login.rb
|
549
565
|
- samples/elaborate/mandelbrot_fractal.rb
|
550
566
|
- samples/elaborate/meta_sample.rb
|