glimmer-dsl-tk 0.0.26 → 0.0.30
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 +35 -0
- data/README.md +804 -61
- data/VERSION +1 -1
- data/glimmer-dsl-tk.gemspec +0 -0
- data/lib/glimmer/dsl/tk/built_in_dialog_expression.rb +57 -0
- data/lib/glimmer/dsl/tk/dsl.rb +1 -0
- data/lib/glimmer/tk/drag_and_drop_extension.rb +112 -0
- data/lib/glimmer/tk/label_proxy.rb +0 -10
- data/lib/glimmer/tk/text_proxy.rb +210 -50
- data/lib/glimmer/tk/widget_proxy.rb +23 -8
- data/samples/elaborate/meta_sample.rb +6 -6
- data/samples/hello/hello_built_in_dialog.rb +68 -0
- data/samples/hello/hello_drag_and_drop.rb +159 -0
- data/samples/hello/hello_message_box.rb +0 -4
- data/samples/hello/hello_separator.rb +69 -0
- data/samples/hello/hello_text.rb +202 -23
- data/samples/hello/images/align-center.png +0 -0
- data/samples/hello/images/align-left.png +0 -0
- data/samples/hello/images/align-right.png +0 -0
- data/samples/hello/images/copy.png +0 -0
- data/samples/hello/images/cut.png +0 -0
- data/samples/hello/images/paste.png +0 -0
- data/samples/hello/images/picture.png +0 -0
- data/samples/hello/images/redo.png +0 -0
- data/samples/hello/images/search.png +0 -0
- data/samples/hello/images/undo.png +0 -0
- metadata +19 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: glimmer-dsl-tk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AndyMaleh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: glimmer
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.
|
19
|
+
version: 2.4.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.
|
26
|
+
version: 2.4.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: puts_debuggerer
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -215,6 +215,7 @@ files:
|
|
215
215
|
- lib/glimmer/dsl/tk/attribute_expression.rb
|
216
216
|
- lib/glimmer/dsl/tk/bind_expression.rb
|
217
217
|
- lib/glimmer/dsl/tk/block_attribute_expression.rb
|
218
|
+
- lib/glimmer/dsl/tk/built_in_dialog_expression.rb
|
218
219
|
- lib/glimmer/dsl/tk/data_binding_expression.rb
|
219
220
|
- lib/glimmer/dsl/tk/dsl.rb
|
220
221
|
- lib/glimmer/dsl/tk/format_expression.rb
|
@@ -228,6 +229,7 @@ files:
|
|
228
229
|
- lib/glimmer/tk/checkbutton_proxy.rb
|
229
230
|
- lib/glimmer/tk/combobox_proxy.rb
|
230
231
|
- lib/glimmer/tk/commandable.rb
|
232
|
+
- lib/glimmer/tk/drag_and_drop_extension.rb
|
231
233
|
- lib/glimmer/tk/entry_proxy.rb
|
232
234
|
- lib/glimmer/tk/frame_proxy.rb
|
233
235
|
- lib/glimmer/tk/label_proxy.rb
|
@@ -242,11 +244,13 @@ files:
|
|
242
244
|
- lib/glimmer/tk/variable_owner.rb
|
243
245
|
- lib/glimmer/tk/widget_proxy.rb
|
244
246
|
- samples/elaborate/meta_sample.rb
|
247
|
+
- samples/hello/hello_built_in_dialog.rb
|
245
248
|
- samples/hello/hello_button.rb
|
246
249
|
- samples/hello/hello_checkbutton.rb
|
247
250
|
- samples/hello/hello_combobox.rb
|
248
251
|
- samples/hello/hello_computed.rb
|
249
252
|
- samples/hello/hello_computed/contact.rb
|
253
|
+
- samples/hello/hello_drag_and_drop.rb
|
250
254
|
- samples/hello/hello_entry.rb
|
251
255
|
- samples/hello/hello_frame.rb
|
252
256
|
- samples/hello/hello_label.rb
|
@@ -256,9 +260,15 @@ files:
|
|
256
260
|
- samples/hello/hello_notebook.rb
|
257
261
|
- samples/hello/hello_radiobutton.rb
|
258
262
|
- samples/hello/hello_root.rb
|
263
|
+
- samples/hello/hello_separator.rb
|
259
264
|
- samples/hello/hello_spinbox.rb
|
260
265
|
- samples/hello/hello_text.rb
|
261
266
|
- samples/hello/hello_world.rb
|
267
|
+
- samples/hello/images/align-center.png
|
268
|
+
- samples/hello/images/align-left.png
|
269
|
+
- samples/hello/images/align-right.png
|
270
|
+
- samples/hello/images/copy.png
|
271
|
+
- samples/hello/images/cut.png
|
262
272
|
- samples/hello/images/denmark.png
|
263
273
|
- samples/hello/images/finland.png
|
264
274
|
- samples/hello/images/france.png
|
@@ -267,6 +277,11 @@ files:
|
|
267
277
|
- samples/hello/images/mexico.png
|
268
278
|
- samples/hello/images/netherlands.png
|
269
279
|
- samples/hello/images/norway.png
|
280
|
+
- samples/hello/images/paste.png
|
281
|
+
- samples/hello/images/picture.png
|
282
|
+
- samples/hello/images/redo.png
|
283
|
+
- samples/hello/images/search.png
|
284
|
+
- samples/hello/images/undo.png
|
270
285
|
- samples/hello/images/usa.png
|
271
286
|
homepage: http://github.com/AndyObtiva/glimmer-dsl-tk
|
272
287
|
licenses:
|