glimmer-dsl-libui 0.0.1 → 0.0.5
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 +4 -4
- data/CHANGELOG.md +29 -0
- data/README.md +948 -21
- data/VERSION +1 -1
- data/examples/basic_entry.rb +31 -0
- data/examples/control_gallery.rb +184 -0
- data/examples/midi_player.rb +90 -0
- data/examples/simple_notepad.rb +15 -0
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/dsl/libui/control_expression.rb +2 -1
- data/lib/glimmer/dsl/libui/dsl.rb +1 -1
- data/lib/glimmer/dsl/libui/file_expression.rb +33 -0
- data/lib/glimmer/dsl/libui/open_file_expression.rb +33 -0
- data/lib/glimmer/dsl/libui/save_file_expression.rb +33 -0
- data/lib/glimmer/dsl/libui/tab_item_expression.rb +35 -0
- data/lib/glimmer/libui/about_menu_item_proxy.rb +37 -0
- data/lib/glimmer/libui/box.rb +37 -0
- data/lib/glimmer/libui/check_menu_item_proxy.rb +37 -0
- data/lib/glimmer/libui/combobox_proxy.rb +42 -0
- data/lib/glimmer/libui/control_proxy.rb +90 -24
- data/lib/glimmer/libui/editable_combobox_proxy.rb +42 -0
- data/lib/glimmer/libui/group_proxy.rb +35 -0
- data/lib/glimmer/libui/horizontal_box_proxy.rb +34 -0
- data/lib/glimmer/libui/menu_item_proxy.rb +41 -0
- data/lib/glimmer/libui/preferences_menu_item_proxy.rb +37 -0
- data/lib/glimmer/libui/quit_menu_item_proxy.rb +62 -0
- data/lib/glimmer/libui/radio_buttons_proxy.rb +42 -0
- data/lib/glimmer/libui/separator_menu_item_proxy.rb +37 -0
- data/lib/glimmer/libui/tab_item_proxy.rb +64 -0
- data/lib/glimmer/libui/vertical_box_proxy.rb +34 -0
- data/lib/glimmer/libui/window_proxy.rb +6 -2
- data/lib/glimmer-dsl-libui.rb +2 -0
- metadata +27 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3d949c7e8a83eaa3d09b07e3117158885f1c34d13737420d3a1cf7499d2250c
|
4
|
+
data.tar.gz: db7447e66369398e9c1b48ab194f27c710cab11e60998bc8eaae1bb2c64145b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f9c8af1645a02379f6a1693bffc20bc6c1c70a349603810a7f292b886c1652f60426459063641a676ee50e5f6b035a25effe21b4f39acca5bb43c394ef89e58
|
7
|
+
data.tar.gz: f41584f6026750c4c30e18475ceabac1a8382b11cfccd62f536fafbed0225a4a21cd651ec477baae93b596090154f7a1692ac3a3ae6fca8a7625fe774a618fcd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,34 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## 0.0.5
|
4
|
+
|
5
|
+
- Support examples/control_gallery.rb
|
6
|
+
- Support `open_file` and `save_file`
|
7
|
+
- Support `quit_menu_item` with `on_clicked` listener
|
8
|
+
- Support `preferences_menu_item` and `about_menu_item`
|
9
|
+
- Support `check_menu_item` and `separator_menu_item`
|
10
|
+
- Support `enabled=` & `set_enabled` on all controls (making `enabled` property read/write by relying on `enable`/`disable` operations)
|
11
|
+
- Support `visible=` & `set_visible` on all controls (making `visible` property read/write by relying on `show`/`hide` operations)
|
12
|
+
- Support `horizontal_box` and `vertical_box` propeties (`padded`) & operations (`append`, `delete`) via `LibUI.box_*` methods
|
13
|
+
- Support `editable_combobox`, `radio_buttons`, and `group`
|
14
|
+
- Support `tab` and `tab_item`
|
15
|
+
- Fix issue with always setting menu item text to 'Version' (correctly set to passed argument instead)
|
16
|
+
|
17
|
+
## 0.0.4
|
18
|
+
|
19
|
+
- Support examples/midi_player.rb
|
20
|
+
- Support `combobox` `items` attribute to append text value array declaratively
|
21
|
+
- Support `menu` and `menu_item` controls
|
22
|
+
|
23
|
+
## 0.0.3
|
24
|
+
|
25
|
+
- Support examples/simple_notepad.rb
|
26
|
+
|
27
|
+
## 0.0.2
|
28
|
+
|
29
|
+
- Support `vertical_box` and `horizontal_box`
|
30
|
+
- Support examples/basic_entry.rb
|
31
|
+
|
3
32
|
## 0.0.1
|
4
33
|
|
5
34
|
- LibUI general control and window support
|