glimmer-dsl-libui 0.1.3 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +50 -0
  3. data/README.md +901 -104
  4. data/VERSION +1 -1
  5. data/examples/area_gallery.rb +36 -38
  6. data/examples/area_gallery2.rb +111 -0
  7. data/examples/area_gallery3.rb +52 -0
  8. data/examples/area_gallery4.rb +113 -0
  9. data/examples/basic_area2.rb +1 -1
  10. data/examples/basic_button.rb +2 -2
  11. data/examples/basic_entry.rb +2 -2
  12. data/examples/basic_table_progress_bar.rb +13 -3
  13. data/examples/basic_transform.rb +27 -0
  14. data/examples/control_gallery.rb +3 -3
  15. data/examples/dynamic_area.rb +1 -1
  16. data/examples/form.rb +2 -2
  17. data/examples/histogram.rb +118 -0
  18. data/examples/meta_example.rb +71 -20
  19. data/examples/midi_player.rb +8 -10
  20. data/glimmer-dsl-libui.gemspec +0 -0
  21. data/lib/glimmer/dsl/libui/control_expression.rb +0 -2
  22. data/lib/glimmer/dsl/libui/file_expression.rb +5 -1
  23. data/lib/glimmer/dsl/libui/shape_expression.rb +2 -4
  24. data/lib/glimmer/dsl/libui/tab_item_expression.rb +2 -2
  25. data/lib/glimmer/libui/control_proxy/area_proxy.rb +117 -0
  26. data/lib/glimmer/libui/{menu_item_proxy.rb → control_proxy/box/horizontal_box_proxy.rb} +9 -12
  27. data/lib/glimmer/libui/{horizontal_box_proxy.rb → control_proxy/box/vertical_box_proxy.rb} +10 -6
  28. data/lib/glimmer/libui/{box.rb → control_proxy/box.rb} +31 -27
  29. data/lib/glimmer/libui/{button_proxy.rb → control_proxy/button_proxy.rb} +14 -12
  30. data/lib/glimmer/libui/{checkbox_proxy.rb → control_proxy/checkbox_proxy.rb} +14 -12
  31. data/lib/glimmer/libui/control_proxy/color_button_proxy.rb +118 -0
  32. data/lib/glimmer/libui/control_proxy/column/button_column_proxy.rb +76 -0
  33. data/lib/glimmer/libui/control_proxy/column/checkbox_column_proxy.rb +46 -0
  34. data/lib/glimmer/libui/control_proxy/column/checkbox_text_column_proxy.rb +80 -0
  35. data/lib/glimmer/libui/{radio_buttons_proxy.rb → control_proxy/column/image_column_proxy.rb} +14 -13
  36. data/lib/glimmer/libui/control_proxy/column/image_text_column_proxy.rb +48 -0
  37. data/lib/glimmer/libui/control_proxy/column/progress_bar_column_proxy.rb +44 -0
  38. data/lib/glimmer/libui/{checkbox_column_proxy.rb → control_proxy/column/text_column_proxy.rb} +17 -13
  39. data/lib/glimmer/libui/control_proxy/column.rb +55 -0
  40. data/lib/glimmer/libui/control_proxy/combobox_proxy.rb +45 -0
  41. data/lib/glimmer/libui/control_proxy/date_time_picker_proxy/date_picker_proxy.rb +43 -0
  42. data/lib/glimmer/libui/control_proxy/date_time_picker_proxy/time_picker_proxy.rb +43 -0
  43. data/lib/glimmer/libui/control_proxy/date_time_picker_proxy.rb +72 -0
  44. data/lib/glimmer/libui/control_proxy/dual_column.rb +40 -0
  45. data/lib/glimmer/libui/control_proxy/editable_column.rb +46 -0
  46. data/lib/glimmer/libui/control_proxy/editable_combobox_proxy.rb +45 -0
  47. data/lib/glimmer/libui/{dual_column.rb → control_proxy/enableable_column.rb} +18 -10
  48. data/lib/glimmer/libui/control_proxy/font_button_proxy.rb +70 -0
  49. data/lib/glimmer/libui/{form_proxy.rb → control_proxy/form_proxy.rb} +26 -24
  50. data/lib/glimmer/libui/{grid_proxy.rb → control_proxy/grid_proxy.rb} +29 -27
  51. data/lib/glimmer/libui/{group_proxy.rb → control_proxy/group_proxy.rb} +24 -22
  52. data/lib/glimmer/libui/{image_part_proxy.rb → control_proxy/image_part_proxy.rb} +20 -18
  53. data/lib/glimmer/libui/{image_proxy.rb → control_proxy/image_proxy.rb} +32 -30
  54. data/lib/glimmer/libui/{combobox_proxy.rb → control_proxy/label_proxy.rb} +13 -13
  55. data/lib/glimmer/libui/control_proxy/matrix_proxy.rb +147 -0
  56. data/lib/glimmer/libui/{editable_column.rb → control_proxy/menu_item_proxy/about_menu_item_proxy.rb} +13 -16
  57. data/lib/glimmer/libui/control_proxy/menu_item_proxy/check_menu_item_proxy.rb +41 -0
  58. data/lib/glimmer/libui/{date_picker_proxy.rb → control_proxy/menu_item_proxy/preferences_menu_item_proxy.rb} +10 -10
  59. data/lib/glimmer/libui/{quit_menu_item_proxy.rb → control_proxy/menu_item_proxy/quit_menu_item_proxy.rb} +33 -29
  60. data/lib/glimmer/libui/control_proxy/menu_item_proxy/separator_menu_item_proxy.rb +41 -0
  61. data/lib/glimmer/libui/control_proxy/menu_item_proxy.rb +45 -0
  62. data/lib/glimmer/libui/{editable_combobox_proxy.rb → control_proxy/menu_proxy.rb} +13 -13
  63. data/lib/glimmer/libui/{vertical_box_proxy.rb → control_proxy/message_box/msg_box_error_proxy.rb} +9 -6
  64. data/lib/glimmer/libui/{multiline_entry_proxy.rb → control_proxy/message_box/msg_box_proxy.rb} +8 -6
  65. data/lib/glimmer/libui/{time_picker_proxy.rb → control_proxy/message_box.rb} +9 -10
  66. data/lib/glimmer/libui/{rectangle.rb → control_proxy/multiline_entry_proxy/non_wrapping_multiline_entry_proxy.rb} +6 -7
  67. data/lib/glimmer/libui/{progress_bar_column_proxy.rb → control_proxy/multiline_entry_proxy.rb} +10 -11
  68. data/lib/glimmer/libui/control_proxy/path_proxy.rb +190 -0
  69. data/lib/glimmer/libui/control_proxy/radio_buttons_proxy.rb +45 -0
  70. data/lib/glimmer/libui/{button_column_proxy.rb → control_proxy/tab_item_proxy.rb} +37 -40
  71. data/lib/glimmer/libui/control_proxy/table_proxy.rb +182 -0
  72. data/lib/glimmer/libui/control_proxy/transformable.rb +74 -0
  73. data/lib/glimmer/libui/control_proxy/window_proxy.rb +128 -0
  74. data/lib/glimmer/libui/control_proxy.rb +39 -20
  75. data/lib/glimmer/libui/{enableable_column.rb → parent.rb} +7 -15
  76. data/lib/glimmer/libui/{arc.rb → shape/arc.rb} +13 -10
  77. data/lib/glimmer/libui/shape/bezier.rb +38 -0
  78. data/lib/glimmer/libui/{figure.rb → shape/figure.rb} +23 -20
  79. data/lib/glimmer/libui/{line.rb → shape/line.rb} +9 -6
  80. data/lib/glimmer/libui/{bezier.rb → shape/rectangle.rb} +9 -6
  81. data/lib/glimmer/libui/{square.rb → shape/square.rb} +9 -6
  82. data/lib/glimmer/libui/shape.rb +30 -14
  83. data/lib/glimmer/libui.rb +92 -0
  84. data/lib/glimmer-dsl-libui.rb +2 -0
  85. metadata +79 -53
  86. data/lib/glimmer/libui/about_menu_item_proxy.rb +0 -37
  87. data/lib/glimmer/libui/area_proxy.rb +0 -105
  88. data/lib/glimmer/libui/check_menu_item_proxy.rb +0 -37
  89. data/lib/glimmer/libui/checkbox_text_column_proxy.rb +0 -76
  90. data/lib/glimmer/libui/color_button_proxy.rb +0 -64
  91. data/lib/glimmer/libui/column.rb +0 -51
  92. data/lib/glimmer/libui/date_time_picker_proxy.rb +0 -68
  93. data/lib/glimmer/libui/font_button_proxy.rb +0 -68
  94. data/lib/glimmer/libui/image_column_proxy.rb +0 -40
  95. data/lib/glimmer/libui/image_text_column_proxy.rb +0 -44
  96. data/lib/glimmer/libui/label_proxy.rb +0 -41
  97. data/lib/glimmer/libui/menu_proxy.rb +0 -41
  98. data/lib/glimmer/libui/non_wrapping_multiline_entry_proxy.rb +0 -32
  99. data/lib/glimmer/libui/path_proxy.rb +0 -169
  100. data/lib/glimmer/libui/preferences_menu_item_proxy.rb +0 -37
  101. data/lib/glimmer/libui/separator_menu_item_proxy.rb +0 -37
  102. data/lib/glimmer/libui/tab_item_proxy.rb +0 -67
  103. data/lib/glimmer/libui/table_proxy.rb +0 -180
  104. data/lib/glimmer/libui/text_column_proxy.rb +0 -42
  105. data/lib/glimmer/libui/window_proxy.rb +0 -119
@@ -1,105 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
- require 'glimmer/fiddle_consumer'
24
-
25
- module Glimmer
26
- module LibUI
27
- # Proxy for LibUI area objects
28
- #
29
- # Follows the Proxy Design Pattern
30
- class AreaProxy < ControlProxy
31
- include Glimmer::FiddleConsumer
32
-
33
- attr_reader :area_handler
34
-
35
- def post_initialize_child(child)
36
- super
37
- children << child
38
- end
39
-
40
- def post_add_content
41
- super
42
- install_listeners
43
- end
44
-
45
- def children
46
- @children ||= []
47
- end
48
-
49
- def on_draw(&block)
50
- @on_draw_procs ||= []
51
- if block.nil?
52
- @on_draw_procs
53
- else
54
- @on_draw_procs << block
55
- block
56
- end
57
- end
58
-
59
- def can_handle_listener?(listener_name)
60
- listener_name == 'on_draw' || super
61
- end
62
-
63
- def handle_listener(listener_name, &listener)
64
- case listener_name
65
- when 'on_draw'
66
- on_draw(&listener)
67
- else
68
- super
69
- end
70
- end
71
-
72
- private
73
-
74
- def build_control
75
- @area_handler = ::LibUI::FFI::AreaHandler.malloc
76
- @libui = ::LibUI.new_area(@area_handler)
77
- end
78
-
79
- def install_listeners
80
- @area_handler.Draw = fiddle_closure_block_caller(0, [1, 1, 1]) do |_, _, area_draw_params|
81
- area_draw_params = ::LibUI::FFI::AreaDrawParams.new(area_draw_params)
82
- area_draw_params = area_draw_params_hash(area_draw_params)
83
- children.each {|child| child.draw(area_draw_params)}
84
- on_draw.each {|listener| listener.call(area_draw_params) }
85
- end
86
- @area_handler.MouseEvent = fiddle_closure_block_caller(0, [0]) {}
87
- @area_handler.MouseCrossed = fiddle_closure_block_caller(0, [0]) {}
88
- @area_handler.DragBroken = fiddle_closure_block_caller(0, [0]) {}
89
- @area_handler.KeyEvent = fiddle_closure_block_caller(0, [0]) {}
90
- end
91
-
92
- def area_draw_params_hash(area_draw_params)
93
- {
94
- context: area_draw_params.Context,
95
- area_width: area_draw_params.AreaWidth,
96
- area_height: area_draw_params.AreaHeight,
97
- clip_x: area_draw_params.ClipX,
98
- clip_y: area_draw_params.ClipY,
99
- clip_width: area_draw_params.ClipWidth,
100
- clip_height: area_draw_params.ClipHeight,
101
- }
102
- end
103
- end
104
- end
105
- end
@@ -1,37 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/menu_item_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI check menu item object
27
- #
28
- # Follows the Proxy Design Pattern
29
- class CheckMenuItemProxy < MenuItemProxy
30
- private
31
-
32
- def build_control
33
- @libui = @parent_proxy.append_check_item(*@args)
34
- end
35
- end
36
- end
37
- end
@@ -1,76 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
- require 'glimmer/libui/column'
24
- require 'glimmer/libui/dual_column'
25
- require 'glimmer/libui/editable_column'
26
-
27
- module Glimmer
28
- module LibUI
29
- # Proxy for LibUI checkbox text column objects
30
- #
31
- # Follows the Proxy Design Pattern
32
- class CheckboxTextColumnProxy < ControlProxy
33
- include Column
34
- include DualColumn
35
- include EditableColumn
36
-
37
- def editable_checkbox(value = nil)
38
- if value.nil?
39
- @editable_checkbox = false if @editable_checkbox.nil?
40
- @editable_checkbox
41
- else
42
- @editable_checkbox = !!value
43
- end
44
- end
45
- alias editable_checkbox= editable_checkbox
46
- alias set_editable_checkbox editable_checkbox
47
- alias editable_checkbox? editable_checkbox
48
-
49
- def editable_text(value = nil)
50
- if value.nil?
51
- @editable_text = false if @editable_text.nil?
52
- @editable_text
53
- else
54
- @editable_text = !!value
55
- end
56
- end
57
- alias editable_text= editable_text
58
- alias set_editable_text editable_text
59
- alias editable_text? editable_text
60
-
61
- private
62
-
63
- def build_control
64
- @parent_proxy.append_checkbox_text_column(name, column_index, editable_checkbox_value, second_column_index, editable_text_value)
65
- end
66
-
67
- def editable_checkbox_value
68
- (@parent_proxy.editable? || editable? || editable_checkbox?) ? -2 : -1
69
- end
70
-
71
- def editable_text_value
72
- (@parent_proxy.editable? || editable? || editable_text?) ? -2 : -1
73
- end
74
- end
75
- end
76
- end
@@ -1,64 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI color button objects
27
- #
28
- # Follows the Proxy Design Pattern
29
- class ColorButtonProxy < ControlProxy
30
- def color
31
- @red ||= Fiddle::Pointer.malloc(8) # double
32
- @green ||= Fiddle::Pointer.malloc(8) # double
33
- @blue ||= Fiddle::Pointer.malloc(8) # double
34
- @alpha ||= Fiddle::Pointer.malloc(8) # double
35
- ::LibUI.color_button_color(@libui, @red, @green, @blue, @alpha)
36
- [@red[0, 8].unpack1('d') * 255.0, @green[0, 8].unpack1('d') * 255.0, @blue[0, 8].unpack1('d') * 255.0, @alpha[0, 8].unpack1('d')]
37
- end
38
-
39
- def red
40
- color[0]
41
- end
42
-
43
- def green
44
- color[1]
45
- end
46
-
47
- def blue
48
- color[2]
49
- end
50
-
51
- def alpha
52
- color[3]
53
- end
54
-
55
- def destroy
56
- Fiddle.free @red unless @red.nil?
57
- Fiddle.free @green unless @green.nil?
58
- Fiddle.free @blue unless @blue.nil?
59
- Fiddle.free @alpha unless @alpha.nil?
60
- super
61
- end
62
- end
63
- end
64
- end
@@ -1,51 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- module Glimmer
23
- module LibUI
24
- # Common logic for all column proxy objects
25
- module Column
26
- def initialize(keyword, parent, args, &block)
27
- @keyword = keyword
28
- @parent_proxy = parent
29
- @args = args
30
- @block = block
31
- @enabled = true
32
- post_add_content if @block.nil?
33
- end
34
-
35
- def name
36
- @args.first
37
- end
38
-
39
- # column index used in table append column API call
40
- # expanded to ensure DualColumn index accounts for two columns acting as one
41
- def column_index
42
- @column_index ||= @parent_proxy.send(:next_column_index)
43
- end
44
-
45
- # actual index within table columns (disregarding nil fillings that account for DualColumn instances)
46
- def index
47
- @parent_proxy.columns.compact.index(self)
48
- end
49
- end
50
- end
51
- end
@@ -1,68 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI date time picker objects
27
- #
28
- # Follows the Proxy Design Pattern
29
- class DateTimePickerProxy < ControlProxy
30
- def libui_api_keyword
31
- 'date_time_picker'
32
- end
33
-
34
- def time(value = nil)
35
- @time ||= ::LibUI::FFI::TM.malloc
36
- ::LibUI.date_time_picker_time(@libui, @time)
37
- if value.nil?
38
- {
39
- sec: @time.tm_sec,
40
- min: @time.tm_min,
41
- hour: @time.tm_hour,
42
- mday: @time.tm_mday,
43
- mon: @time.tm_mon + 1,
44
- year: @time.tm_year + 1900,
45
- wday: @time.tm_wday + 1,
46
- yday: @time.tm_yday + 1,
47
- dst: @time.tm_isdst == 1
48
- }
49
- else
50
- @time.tm_sec = value[:sec] unless value[:sec].nil?
51
- @time.tm_min = value[:min] unless value[:min].nil?
52
- @time.tm_hour = value[:hour] unless value[:hour].nil?
53
- @time.tm_mday = value[:mday] unless value[:mday].nil?
54
- @time.tm_mon = value[:mon] - 1 unless value[:mon].nil?
55
- @time.tm_year = value[:year] - 1900 unless value[:year].nil?
56
- ::LibUI.date_time_picker_set_time(@libui, @time)
57
- end
58
- end
59
- alias set_time time
60
- alias time= time
61
-
62
- def destroy
63
- Fiddle.free @time unless @time.nil?
64
- super
65
- end
66
- end
67
- end
68
- end
@@ -1,68 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI font button objects
27
- #
28
- # Follows the Proxy Design Pattern
29
- class FontButtonProxy < ControlProxy
30
- def font
31
- @font_descriptor ||= ::LibUI::FFI::FontDescriptor.malloc
32
- ::LibUI.font_button_font(@libui, @font_descriptor)
33
- {
34
- family: @font_descriptor.Family.to_s,
35
- size: @font_descriptor.Size,
36
- weight: @font_descriptor.Weight,
37
- italic: @font_descriptor.Italic,
38
- stretch: @font_descriptor.Stretch
39
- }
40
- end
41
-
42
- def family
43
- font[:family]
44
- end
45
-
46
- def size
47
- font[:size]
48
- end
49
-
50
- def weight
51
- font[:weight]
52
- end
53
-
54
- def italic
55
- font[:italic]
56
- end
57
-
58
- def stretch
59
- font[:stretch]
60
- end
61
-
62
- def destroy
63
- ::LibUI.free_font_button_font(@font_descriptor) unless @font_descriptor.nil?
64
- super
65
- end
66
- end
67
- end
68
- end
@@ -1,40 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
- require 'glimmer/libui/column'
24
-
25
- module Glimmer
26
- module LibUI
27
- # Proxy for LibUI image column objects
28
- #
29
- # Follows the Proxy Design Pattern
30
- class ImageColumnProxy < ControlProxy
31
- include Column
32
-
33
- private
34
-
35
- def build_control
36
- @parent_proxy.append_image_column(name, column_index)
37
- end
38
- end
39
- end
40
- end
@@ -1,44 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
- require 'glimmer/libui/column'
24
- require 'glimmer/libui/dual_column'
25
- require 'glimmer/libui/editable_column'
26
-
27
- module Glimmer
28
- module LibUI
29
- # Proxy for LibUI image text column objects
30
- #
31
- # Follows the Proxy Design Pattern
32
- class ImageTextColumnProxy < ControlProxy
33
- include Column
34
- include DualColumn
35
- include EditableColumn
36
-
37
- private
38
-
39
- def build_control
40
- @parent_proxy.append_image_text_column(name, column_index, second_column_index, editable_value)
41
- end
42
- end
43
- end
44
- end
@@ -1,41 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI label objects
27
- #
28
- # Follows the Proxy Design Pattern
29
- class LabelProxy < ControlProxy
30
- DEFAULT_TEXT = ''
31
-
32
- private
33
-
34
- def build_control
35
- construction_args = @args.dup
36
- construction_args[0] = DEFAULT_TEXT if construction_args.size == 0
37
- @libui = ControlProxy.new_control(@keyword, construction_args)
38
- end
39
- end
40
- end
41
- end
@@ -1,41 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/control_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI menu objects
27
- #
28
- # Follows the Proxy Design Pattern
29
- class MenuProxy < ControlProxy
30
- DEFAULT_TEXT = ''
31
-
32
- private
33
-
34
- def build_control
35
- construction_args = @args.dup
36
- construction_args[0] = DEFAULT_TEXT if construction_args.size == 0
37
- @libui = ControlProxy.new_control(@keyword, construction_args)
38
- end
39
- end
40
- end
41
- end
@@ -1,32 +0,0 @@
1
- # Copyright (c) 2021 Andy Maleh
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining
4
- # a copy of this software and associated documentation files (the
5
- # "Software"), to deal in the Software without restriction, including
6
- # without limitation the rights to use, copy, modify, merge, publish,
7
- # distribute, sublicense, and/or sell copies of the Software, and to
8
- # permit persons to whom the Software is furnished to do so, subject to
9
- # the following conditions:
10
- #
11
- # The above copyright notice and this permission notice shall be
12
- # included in all copies or substantial portions of the Software.
13
- #
14
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
-
22
- require 'glimmer/libui/multiline_entry_proxy'
23
-
24
- module Glimmer
25
- module LibUI
26
- # Proxy for LibUI non wrapping multiline entry objects
27
- #
28
- # Follows the Proxy Design Pattern
29
- class NonWrappingMultilineEntryProxy < MultilineEntryProxy
30
- end
31
- end
32
- end