glimmer-dsl-swt 4.17.8.1 → 4.17.10.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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +41 -0
  3. data/README.md +249 -7
  4. data/VERSION +1 -1
  5. data/glimmer-dsl-swt.gemspec +12 -7
  6. data/lib/glimmer-dsl-swt.rb +4 -3
  7. data/lib/glimmer/data_binding/table_items_binding.rb +5 -5
  8. data/lib/glimmer/dsl/swt/checkbox_group_selection_data_binding_expression.rb +3 -3
  9. data/lib/glimmer/dsl/swt/radio_group_selection_data_binding_expression.rb +3 -3
  10. data/lib/glimmer/dsl/swt/table_items_data_binding_expression.rb +3 -3
  11. data/lib/glimmer/dsl/swt/widget_expression.rb +1 -0
  12. data/lib/glimmer/launcher.rb +9 -9
  13. data/lib/glimmer/swt/custom/checkbox_group.rb +29 -8
  14. data/lib/glimmer/swt/custom/code_text.rb +36 -34
  15. data/lib/glimmer/swt/custom/radio_group.rb +27 -6
  16. data/lib/glimmer/swt/date_time_proxy.rb +87 -0
  17. data/lib/glimmer/swt/display_proxy.rb +6 -6
  18. data/lib/glimmer/swt/dnd_proxy.rb +6 -10
  19. data/lib/glimmer/swt/message_box_proxy.rb +7 -7
  20. data/lib/glimmer/swt/sash_form_proxy.rb +3 -3
  21. data/lib/glimmer/swt/shell_proxy.rb +18 -3
  22. data/lib/glimmer/swt/style_constantizable.rb +5 -5
  23. data/lib/glimmer/swt/swt_proxy.rb +7 -8
  24. data/lib/glimmer/swt/tab_item_proxy.rb +9 -4
  25. data/lib/glimmer/swt/table_column_proxy.rb +13 -5
  26. data/lib/glimmer/swt/table_proxy.rb +187 -66
  27. data/lib/glimmer/swt/widget_listener_proxy.rb +4 -4
  28. data/lib/glimmer/swt/widget_proxy.rb +47 -3
  29. data/samples/elaborate/contact_manager.rb +3 -3
  30. data/samples/elaborate/meta_sample.rb +9 -9
  31. data/samples/hello/hello_browser.rb +3 -3
  32. data/samples/hello/hello_checkbox.rb +4 -4
  33. data/samples/hello/hello_checkbox_group.rb +6 -3
  34. data/samples/hello/hello_combo.rb +5 -5
  35. data/samples/hello/hello_date_time.rb +63 -0
  36. data/samples/hello/hello_group.rb +104 -0
  37. data/samples/hello/hello_menu_bar.rb +3 -3
  38. data/samples/hello/hello_pop_up_context_menu.rb +3 -3
  39. data/samples/hello/hello_radio.rb +6 -6
  40. data/samples/hello/hello_radio_group.rb +9 -6
  41. data/samples/hello/hello_sash_form.rb +3 -3
  42. data/samples/hello/hello_spinner.rb +69 -0
  43. data/samples/hello/hello_tab.rb +3 -3
  44. data/samples/hello/hello_table.rb +287 -0
  45. metadata +11 -6
metadata CHANGED
@@ -1,21 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glimmer-dsl-swt
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.17.8.1
4
+ version: 4.17.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - AndyMaleh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-01 00:00:00.000000000 Z
11
+ date: 2020-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: 1.0.2
18
+ version: 1.0.3
19
19
  name: glimmer
20
20
  prerelease: false
21
21
  type: :runtime
@@ -23,7 +23,7 @@ dependencies:
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.0.2
26
+ version: 1.0.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
@@ -185,7 +185,7 @@ dependencies:
185
185
  requirements:
186
186
  - - ">="
187
187
  - !ruby/object:Gem::Version
188
- version: 3.23.0
188
+ version: 3.25.0
189
189
  - - "<"
190
190
  - !ruby/object:Gem::Version
191
191
  version: 4.0.0
@@ -196,7 +196,7 @@ dependencies:
196
196
  requirements:
197
197
  - - ">="
198
198
  - !ruby/object:Gem::Version
199
- version: 3.23.0
199
+ version: 3.25.0
200
200
  - - "<"
201
201
  - !ruby/object:Gem::Version
202
202
  version: 4.0.0
@@ -392,6 +392,7 @@ files:
392
392
  - lib/glimmer/swt/custom/checkbox_group.rb
393
393
  - lib/glimmer/swt/custom/code_text.rb
394
394
  - lib/glimmer/swt/custom/radio_group.rb
395
+ - lib/glimmer/swt/date_time_proxy.rb
395
396
  - lib/glimmer/swt/directory_dialog_proxy.rb
396
397
  - lib/glimmer/swt/display_proxy.rb
397
398
  - lib/glimmer/swt/dnd_proxy.rb
@@ -437,10 +438,12 @@ files:
437
438
  - samples/hello/hello_computed/contact.rb
438
439
  - samples/hello/hello_custom_shell.rb
439
440
  - samples/hello/hello_custom_widget.rb
441
+ - samples/hello/hello_date_time.rb
440
442
  - samples/hello/hello_directory_dialog.rb
441
443
  - samples/hello/hello_drag_and_drop.rb
442
444
  - samples/hello/hello_expand_bar.rb
443
445
  - samples/hello/hello_file_dialog.rb
446
+ - samples/hello/hello_group.rb
444
447
  - samples/hello/hello_list_multi_selection.rb
445
448
  - samples/hello/hello_list_single_selection.rb
446
449
  - samples/hello/hello_menu_bar.rb
@@ -449,8 +452,10 @@ files:
449
452
  - samples/hello/hello_radio.rb
450
453
  - samples/hello/hello_radio_group.rb
451
454
  - samples/hello/hello_sash_form.rb
455
+ - samples/hello/hello_spinner.rb
452
456
  - samples/hello/hello_styled_text.rb
453
457
  - samples/hello/hello_tab.rb
458
+ - samples/hello/hello_table.rb
454
459
  - samples/hello/hello_world.rb
455
460
  - vendor/swt/linux/swt.jar
456
461
  - vendor/swt/mac/swt.jar