glimmer-dsl-swt 4.19.0.2 → 4.20.0.4

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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +26 -0
  3. data/README.md +26 -27
  4. data/RUBY_VERSION +1 -1
  5. data/VERSION +1 -1
  6. data/docs/reference/GLIMMER_GUI_DSL_SYNTAX.md +44 -15
  7. data/docs/reference/GLIMMER_SAMPLES.md +157 -17
  8. data/glimmer-dsl-swt.gemspec +0 -0
  9. data/lib/glimmer/data_binding/shine.rb +41 -26
  10. data/lib/glimmer/dsl/swt/dsl.rb +2 -1
  11. data/lib/glimmer/dsl/swt/shine_data_binding_expression.rb +49 -0
  12. data/lib/glimmer/dsl/swt/widget_expression.rb +2 -0
  13. data/lib/glimmer/launcher.rb +6 -0
  14. data/lib/glimmer/rake_task/scaffold.rb +0 -2
  15. data/lib/glimmer/swt/combo_proxy.rb +48 -0
  16. data/lib/glimmer/swt/custom/code_text.rb +13 -9
  17. data/lib/glimmer/swt/tool_bar_proxy.rb +51 -0
  18. data/lib/glimmer/swt/widget_proxy.rb +6 -0
  19. data/samples/elaborate/contact_manager.rb +7 -5
  20. data/samples/elaborate/login.rb +18 -16
  21. data/samples/elaborate/mandelbrot_fractal.rb +2 -2
  22. data/samples/elaborate/metronome.rb +3 -3
  23. data/samples/elaborate/tetris/model/game.rb +0 -3
  24. data/samples/elaborate/tic_tac_toe.rb +2 -2
  25. data/samples/elaborate/weather.rb +164 -0
  26. data/samples/hello/hello_button.rb +1 -1
  27. data/samples/hello/hello_c_combo.rb +2 -1
  28. data/samples/hello/hello_c_tab.rb +1 -0
  29. data/samples/hello/hello_canvas.rb +5 -5
  30. data/samples/hello/hello_canvas_animation_data_binding.rb +1 -1
  31. data/samples/hello/hello_canvas_data_binding.rb +16 -16
  32. data/samples/hello/hello_checkbox.rb +4 -4
  33. data/samples/hello/hello_code_text.rb +3 -57
  34. data/samples/hello/hello_color_dialog.rb +1 -1
  35. data/samples/hello/hello_combo.rb +1 -1
  36. data/samples/hello/hello_composite.rb +71 -0
  37. data/samples/hello/hello_computed.rb +5 -5
  38. data/samples/hello/hello_cool_bar.rb +147 -0
  39. data/samples/hello/hello_custom_widget.rb +1 -1
  40. data/samples/hello/hello_date_time.rb +4 -4
  41. data/samples/hello/hello_dialog.rb +3 -2
  42. data/samples/hello/hello_drag_and_drop.rb +1 -1
  43. data/samples/hello/hello_file_dialog.rb +1 -1
  44. data/samples/hello/hello_font_dialog.rb +3 -3
  45. data/samples/hello/hello_group.rb +6 -6
  46. data/samples/hello/hello_layout.rb +243 -0
  47. data/samples/hello/hello_link.rb +56 -50
  48. data/samples/hello/hello_list_multi_selection.rb +1 -1
  49. data/samples/hello/hello_list_single_selection.rb +1 -1
  50. data/samples/hello/hello_progress_bar.rb +10 -10
  51. data/samples/hello/hello_radio.rb +6 -6
  52. data/samples/hello/hello_sash_form.rb +4 -4
  53. data/samples/hello/hello_shell.rb +205 -0
  54. data/samples/hello/hello_spinner.rb +6 -2
  55. data/samples/hello/hello_styled_text.rb +11 -11
  56. data/samples/hello/hello_tool_bar.rb +143 -0
  57. data/vendor/swt/linux/swt.jar +0 -0
  58. data/vendor/swt/linux_aarch64/swt.jar +0 -0
  59. data/vendor/swt/mac/swt.jar +0 -0
  60. data/vendor/swt/mac_aarch64/swt.jar +0 -0
  61. data/vendor/swt/windows/swt.jar +0 -0
  62. metadata +14 -3
Binary file
Binary file
Binary file
Binary file
Binary file
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.19.0.2
4
+ version: 4.20.0.4
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-01 00:00:00.000000000 Z
11
+ date: 2021-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -344,7 +344,7 @@ description: Glimmer DSL for SWT (JRuby Desktop Development GUI Framework) is a
344
344
  libraries, thus enabling the delivery of desktop apps written in Ruby as truly native
345
345
  DMG/PKG/APP files on the Mac + App Store, MSI/EXE files on Windows, and Gem Packaged
346
346
  Shell Scripts on Linux. Glimmer was the first Ruby gem to bring SWT (Standard Widget
347
- Toolkit) to Ruby, thanks to its creator Andy Maleh, an EclipseCon/EclipseWorld/RubyConf
347
+ Toolkit) to Ruby, thanks to creator Andy Maleh, EclipseCon/EclipseWorld/RubyConf
348
348
  speaker and expert.
349
349
  email: andy.am@gmail.com
350
350
  executables:
@@ -431,6 +431,7 @@ files:
431
431
  - lib/glimmer/dsl/swt/rgba_expression.rb
432
432
  - lib/glimmer/dsl/swt/shape_expression.rb
433
433
  - lib/glimmer/dsl/swt/shell_expression.rb
434
+ - lib/glimmer/dsl/swt/shine_data_binding_expression.rb
434
435
  - lib/glimmer/dsl/swt/swt_expression.rb
435
436
  - lib/glimmer/dsl/swt/sync_exec_expression.rb
436
437
  - lib/glimmer/dsl/swt/tab_item_expression.rb
@@ -448,6 +449,7 @@ files:
448
449
  - lib/glimmer/rake_task/scaffold.rb
449
450
  - lib/glimmer/swt/c_tab_item_proxy.rb
450
451
  - lib/glimmer/swt/color_proxy.rb
452
+ - lib/glimmer/swt/combo_proxy.rb
451
453
  - lib/glimmer/swt/cursor_proxy.rb
452
454
  - lib/glimmer/swt/custom/animation.rb
453
455
  - lib/glimmer/swt/custom/checkbox_group.rb
@@ -493,6 +495,7 @@ files:
493
495
  - lib/glimmer/swt/tab_item_proxy.rb
494
496
  - lib/glimmer/swt/table_column_proxy.rb
495
497
  - lib/glimmer/swt/table_proxy.rb
498
+ - lib/glimmer/swt/tool_bar_proxy.rb
496
499
  - lib/glimmer/swt/transform_proxy.rb
497
500
  - lib/glimmer/swt/tree_proxy.rb
498
501
  - lib/glimmer/swt/widget_listener_proxy.rb
@@ -526,6 +529,7 @@ files:
526
529
  - samples/elaborate/tic_tac_toe/board.rb
527
530
  - samples/elaborate/tic_tac_toe/cell.rb
528
531
  - samples/elaborate/user_profile.rb
532
+ - samples/elaborate/weather.rb
529
533
  - samples/hello/hello_browser.rb
530
534
  - samples/hello/hello_button.rb
531
535
  - samples/hello/hello_c_combo.rb
@@ -550,8 +554,10 @@ files:
550
554
  - samples/hello/hello_code_text.rb
551
555
  - samples/hello/hello_color_dialog.rb
552
556
  - samples/hello/hello_combo.rb
557
+ - samples/hello/hello_composite.rb
553
558
  - samples/hello/hello_computed.rb
554
559
  - samples/hello/hello_computed/contact.rb
560
+ - samples/hello/hello_cool_bar.rb
555
561
  - samples/hello/hello_cursor.rb
556
562
  - samples/hello/hello_custom_shape.rb
557
563
  - samples/hello/hello_custom_shell.rb
@@ -564,6 +570,7 @@ files:
564
570
  - samples/hello/hello_file_dialog.rb
565
571
  - samples/hello/hello_font_dialog.rb
566
572
  - samples/hello/hello_group.rb
573
+ - samples/hello/hello_layout.rb
567
574
  - samples/hello/hello_link.rb
568
575
  - samples/hello/hello_list_multi_selection.rb
569
576
  - samples/hello/hello_list_single_selection.rb
@@ -575,17 +582,21 @@ files:
575
582
  - samples/hello/hello_radio_group.rb
576
583
  - samples/hello/hello_sash_form.rb
577
584
  - samples/hello/hello_shape.rb
585
+ - samples/hello/hello_shell.rb
578
586
  - samples/hello/hello_spinner.rb
579
587
  - samples/hello/hello_styled_text.rb
580
588
  - samples/hello/hello_tab.rb
581
589
  - samples/hello/hello_table.rb
582
590
  - samples/hello/hello_table/baseball_park.png
591
+ - samples/hello/hello_tool_bar.rb
583
592
  - samples/hello/hello_tree.rb
584
593
  - samples/hello/hello_world.rb
585
594
  - sounds/metronome-down.wav
586
595
  - sounds/metronome-up.wav
587
596
  - vendor/swt/linux/swt.jar
597
+ - vendor/swt/linux_aarch64/swt.jar
588
598
  - vendor/swt/mac/swt.jar
599
+ - vendor/swt/mac_aarch64/swt.jar
589
600
  - vendor/swt/windows/swt.jar
590
601
  homepage: http://github.com/AndyObtiva/glimmer-dsl-swt
591
602
  licenses: