wxruby3 0.9.0 → 0.9.2

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 (205) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -0
  3. data/ext/wxruby3/include/wxRubyApp.h +338 -0
  4. data/ext/wxruby3/include/wxruby-Config.h +6 -6
  5. data/ext/wxruby3/include/wxruby-runtime.h +3 -0
  6. data/ext/wxruby3/swig/common.i +22 -0
  7. data/ext/wxruby3/swig/custom/director.swg +296 -0
  8. data/ext/wxruby3/swig/custom/rubyapi.swg +19 -0
  9. data/ext/wxruby3/swig/custom/rubyerrors.swg +45 -0
  10. data/ext/wxruby3/swig/custom/rubyhead.swg +192 -0
  11. data/ext/wxruby3/swig/custom/rubyrun.swg +187 -0
  12. data/ext/wxruby3/swig/custom/swigrun.swg +363 -0
  13. data/ext/wxruby3/swig/custom/typemaps/swigtypemaps.swg +173 -0
  14. data/ext/wxruby3/swig/wx.i +50 -30
  15. data/lib/wx/aui/aui_tab_ctrl.rb +18 -0
  16. data/lib/wx/aui/auinotebook.rb +6 -2
  17. data/lib/wx/aui/require.rb +1 -0
  18. data/lib/wx/core/app.rb +2 -2
  19. data/lib/wx/core/collapsible_pane.rb +1 -1
  20. data/lib/wx/core/const.rb +83 -0
  21. data/lib/wx/core/controlwithitems.rb +8 -6
  22. data/lib/wx/core/menu.rb +10 -0
  23. data/lib/wx/core/notebook.rb +6 -2
  24. data/lib/wx/core/sizer.rb +11 -0
  25. data/lib/wx/core/task_bar_button.rb +19 -0
  26. data/lib/wx/core/textctrl.rb +11 -1
  27. data/lib/wx/core/{treectrl.rb → tree_ctrl.rb} +31 -12
  28. data/lib/wx/core/window.rb +10 -0
  29. data/lib/wx/doc/app.rb +48 -38
  30. data/lib/wx/doc/art_locator.rb +47 -43
  31. data/lib/wx/doc/aui/auimanager.rb +16 -8
  32. data/lib/wx/doc/aui/auinotebook.rb +20 -5
  33. data/lib/wx/doc/clipboard.rb +11 -7
  34. data/lib/wx/doc/colour_dialog.rb +14 -10
  35. data/lib/wx/doc/const.rb +66 -66
  36. data/lib/wx/doc/controlwithitems.rb +17 -7
  37. data/lib/wx/doc/data_object.rb +2 -2
  38. data/lib/wx/doc/event.rb +0 -6
  39. data/lib/wx/doc/evthandler.rb +113 -108
  40. data/lib/wx/doc/font.rb +1 -0
  41. data/lib/wx/doc/functions.rb +9 -9
  42. data/lib/wx/doc/gc_dc.rb +6 -1
  43. data/lib/wx/doc/graphics_context.rb +1 -0
  44. data/lib/wx/doc/grid/grid.rb +22 -1
  45. data/lib/wx/doc/help_controller.rb +11 -7
  46. data/lib/wx/doc/html/html_help_controller.rb +12 -4
  47. data/lib/wx/doc/list_ctrl.rb +33 -29
  48. data/lib/wx/doc/menu.rb +20 -0
  49. data/lib/wx/doc/notebook.rb +21 -0
  50. data/lib/wx/doc/pg/events.rb +13 -9
  51. data/lib/wx/doc/pg/pg_property.rb +18 -0
  52. data/lib/wx/doc/progress_dialog.rb +36 -32
  53. data/lib/wx/doc/prt/page_setup_dialog.rb +20 -12
  54. data/lib/wx/doc/prt/print_data.rb +13 -5
  55. data/lib/wx/doc/prt/print_dialog.rb +31 -23
  56. data/lib/wx/doc/prt/printer.rb +20 -12
  57. data/lib/wx/doc/radio_box.rb +19 -15
  58. data/lib/wx/doc/rbn/ribbon_bar.rb +13 -5
  59. data/lib/wx/doc/rbn/ribbon_button_bar.rb +13 -5
  60. data/lib/wx/doc/rbn/ribbon_gallery.rb +13 -5
  61. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +13 -5
  62. data/lib/wx/doc/region_iterator.rb +32 -28
  63. data/lib/wx/doc/rtc/rich_text_composite_object.rb +24 -0
  64. data/lib/wx/doc/rtc/rich_text_ctrl.rb +24 -0
  65. data/lib/wx/doc/rtc/rich_text_paragraph.rb +24 -0
  66. data/lib/wx/doc/rtc/richtext_buffer.rb +27 -19
  67. data/lib/wx/doc/rtc/richtext_printing.rb +17 -9
  68. data/lib/wx/doc/rtc/richtext_style_sheet.rb +17 -9
  69. data/lib/wx/doc/sizer.rb +20 -0
  70. data/lib/wx/doc/stc/styled_text_ctrl.rb +24 -0
  71. data/lib/wx/doc/stream.rb +39 -35
  72. data/lib/wx/doc/system_settings.rb +30 -26
  73. data/lib/wx/doc/text_validator.rb +12 -8
  74. data/lib/wx/doc/textctrl.rb +16 -0
  75. data/lib/wx/doc/tree_ctrl.rb +95 -0
  76. data/lib/wx/doc/treebook.rb +9 -5
  77. data/lib/wx/doc/v_list_box.rb +9 -5
  78. data/lib/wx/doc/variant.rb +164 -160
  79. data/lib/wx/doc/window.rb +57 -42
  80. data/lib/wx/doc/window_disabler.rb +10 -6
  81. data/lib/wx/grid/grid.rb +27 -4
  82. data/lib/wx/keyword_defs.rb +43 -6
  83. data/lib/wx/pg/pg_property.rb +22 -0
  84. data/lib/wx/rtc/require.rb +3 -0
  85. data/lib/wx/rtc/rich_text_composite_object.rb +25 -0
  86. data/lib/wx/rtc/rich_text_ctrl.rb +25 -0
  87. data/lib/wx/rtc/rich_text_paragraph.rb +25 -0
  88. data/lib/wx/stc/require.rb +1 -0
  89. data/lib/wx/stc/styled_text_ctrl.rb +25 -0
  90. data/lib/wx/version.rb +1 -1
  91. data/rakelib/lib/config/linux.rb +0 -3
  92. data/rakelib/lib/config/macosx.rb +1 -1
  93. data/rakelib/lib/config/mingw.rb +1 -1
  94. data/rakelib/lib/config/unixish.rb +1 -1
  95. data/rakelib/lib/config.rb +14 -4
  96. data/rakelib/lib/core/include/funcall.inc +33 -14
  97. data/rakelib/lib/core/include/swigdirector.inc +384 -0
  98. data/rakelib/lib/core/include/swigrubyerrors.inc +161 -0
  99. data/{ext/wxruby3/swig/custom/swig4/rubyrun.swg → rakelib/lib/core/include/swigrubyrun.inc} +245 -120
  100. data/rakelib/lib/core/include/swigrun.inc +700 -0
  101. data/rakelib/lib/core/package.rb +19 -9
  102. data/rakelib/lib/core/parameter.rb +3 -0
  103. data/rakelib/lib/core/spec.rb +6 -1
  104. data/rakelib/lib/director/accelerator.rb +3 -4
  105. data/rakelib/lib/director/accessible.rb +47 -0
  106. data/rakelib/lib/director/animation.rb +1 -1
  107. data/rakelib/lib/director/animation_ctrl.rb +20 -0
  108. data/rakelib/lib/director/app.rb +15 -304
  109. data/rakelib/lib/director/app_traits.rb +10 -12
  110. data/rakelib/lib/director/art_provider.rb +1 -1
  111. data/rakelib/lib/director/ctrl_with_items.rb +17 -5
  112. data/rakelib/lib/director/data_format.rb +1 -1
  113. data/rakelib/lib/director/data_object_simple_base.rb +1 -2
  114. data/rakelib/lib/director/derived_dc.rb +1 -1
  115. data/rakelib/lib/director/dialog.rb +6 -0
  116. data/rakelib/lib/director/dialup_event.rb +44 -0
  117. data/rakelib/lib/director/dialup_manager.rb +45 -0
  118. data/rakelib/lib/director/drag_image.rb +2 -3
  119. data/rakelib/lib/director/event.rb +22 -4
  120. data/rakelib/lib/director/file_ctrl.rb +35 -0
  121. data/rakelib/lib/director/file_ctrl_event.rb +26 -0
  122. data/rakelib/lib/director/frame.rb +1 -3
  123. data/rakelib/lib/director/gdicommon.rb +27 -11
  124. data/rakelib/lib/director/graphics_context.rb +2 -4
  125. data/rakelib/lib/director/grid_cell_editor.rb +6 -6
  126. data/rakelib/lib/director/grid_ctrl.rb +34 -3
  127. data/rakelib/lib/director/help_controller.rb +1 -1
  128. data/rakelib/lib/director/icon.rb +5 -2
  129. data/rakelib/lib/director/list_ctrl.rb +5 -6
  130. data/rakelib/lib/director/locale.rb +1 -3
  131. data/rakelib/lib/director/log.rb +1 -4
  132. data/rakelib/lib/director/media_ctrl.rb +54 -0
  133. data/rakelib/lib/director/menu.rb +16 -1
  134. data/rakelib/lib/director/menu_item.rb +2 -2
  135. data/rakelib/lib/director/pgarray_editor_dialog.rb +0 -6
  136. data/rakelib/lib/director/pgeditor.rb +2 -2
  137. data/rakelib/lib/director/pgproperties.rb +3 -3
  138. data/rakelib/lib/director/pgproperty.rb +24 -1
  139. data/rakelib/lib/director/property_grid_interface.rb +5 -10
  140. data/rakelib/lib/director/richtext_buffer.rb +1 -1
  141. data/rakelib/lib/director/richtext_composite_object.rb +25 -0
  142. data/rakelib/lib/director/richtext_ctrl.rb +15 -5
  143. data/rakelib/lib/director/richtext_formatting_dialog.rb +7 -5
  144. data/rakelib/lib/director/richtext_paragraph_layout_box.rb +9 -7
  145. data/rakelib/lib/director/sash_event.rb +42 -0
  146. data/rakelib/lib/director/sizer.rb +79 -1
  147. data/rakelib/lib/director/sizer_item.rb +22 -0
  148. data/rakelib/lib/director/static_box.rb +4 -5
  149. data/rakelib/lib/director/styled_text_ctrl.rb +12 -0
  150. data/rakelib/lib/director/task_bar_button.rb +30 -0
  151. data/rakelib/lib/director/task_bar_icon.rb +6 -14
  152. data/rakelib/lib/director/textctrl.rb +12 -1
  153. data/rakelib/lib/director/tool_tip.rb +1 -1
  154. data/rakelib/lib/director/top_level_window.rb +4 -5
  155. data/rakelib/lib/director/tree_ctrl.rb +24 -50
  156. data/rakelib/lib/director/variant.rb +1 -1
  157. data/rakelib/lib/director/window.rb +24 -5
  158. data/rakelib/lib/director.rb +4 -4
  159. data/rakelib/lib/extractor/function.rb +6 -6
  160. data/rakelib/lib/extractor.rb +34 -5
  161. data/rakelib/lib/generate/analyzer.rb +8 -3
  162. data/rakelib/lib/generate/doc/animation_ctrl.yaml +15 -0
  163. data/rakelib/lib/generate/doc/busy_info.yaml +0 -2
  164. data/rakelib/lib/generate/doc/clipboard.yaml +0 -2
  165. data/rakelib/lib/generate/doc/cursor.yaml +0 -2
  166. data/rakelib/lib/generate/doc/events.yaml +10 -4
  167. data/rakelib/lib/generate/doc/panel.yaml +7 -0
  168. data/rakelib/lib/generate/doc/static_box.yaml +8 -0
  169. data/rakelib/lib/generate/doc/xml_resource.yaml +3 -0
  170. data/rakelib/lib/generate/doc.rb +89 -16
  171. data/rakelib/lib/generate/interface.rb +4 -3
  172. data/rakelib/lib/specs/interfaces.rb +161 -156
  173. data/rakelib/lib/swig_runner.rb +4 -50
  174. data/rakelib/lib/typemap/common.rb +54 -10
  175. data/rakelib/lib/typemap/data_format.rb +1 -1
  176. data/rakelib/lib/typemap/data_object_data.rb +2 -2
  177. data/rakelib/lib/typemap/pgprop_arg.rb +7 -2
  178. data/rakelib/lib/typemap/points_list.rb +5 -7
  179. data/rakelib/lib/util/string.rb +10 -8
  180. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +74 -2
  181. data/rakelib/yard/templates/default/fulldoc/html/full_list.erb +38 -0
  182. data/rakelib/yard/templates/default/fulldoc/html/setup.rb +39 -0
  183. data/rakelib/yard/templates/default/tags/html/wxrb_require.erb +10 -0
  184. data/rakelib/yard/templates/default/tags/setup.rb +16 -0
  185. data/rakelib/yard/yard-custom-templates.rb +3 -0
  186. data/samples/text/richtext.rb +0 -30
  187. data/samples/treectrl/treectrl.rb +1 -1
  188. data/tests/media/beep_lo.wav +0 -0
  189. data/tests/test_app_exit_exception.rb +36 -0
  190. data/tests/test_app_init_exception.rb +20 -0
  191. data/tests/test_book_controls.rb +29 -0
  192. data/tests/test_exceptions.rb +41 -0
  193. data/tests/test_list_ctrl.rb +1 -1
  194. data/tests/test_media_ctrl.rb +38 -0
  195. data/tests/test_menu.rb +69 -0
  196. data/tests/test_pg.rb +27 -0
  197. data/tests/test_richtext.rb +45 -0
  198. data/tests/test_sizer.rb +59 -0
  199. data/tests/test_std_controls.rb +78 -1
  200. data/tests/test_styled_text_ctrl.rb +46 -0
  201. data/tests/test_tree_ctrl.rb +138 -0
  202. data/tests/test_window.rb +12 -0
  203. data/tests/testapp_noframe.rb +1 -1
  204. metadata +54 -5
  205. data/ext/wxruby3/swig/custom/swig3/rubyrun.swg +0 -456
@@ -5,165 +5,169 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::Variant
9
-
10
- include ::Enumerable
11
-
12
- # When a block is given iterates all items of a variant list passing
13
- # each item to the block.
14
- # Returns an enumerator when no block is given.
15
- # @overload each(&block)
16
- # @yieldparam item [Wx::Variant] variant list item
17
- # @return [Object] result of last block execution
18
- # @overload each
19
- # @return [Enumerator] an enumerator
20
- def each; end
21
-
22
- # Replaces the value of the current variant with the given value
23
- # @overload assign(value)
24
- # Equality test operator.
25
- # @param value [Wx::Variant]
26
- # @return [self]
27
- # @overload assign(value)
28
- # Equality test operator.
29
- # @param value [String]
30
- # @return [self]
31
- # @overload assign(value)
32
- # Equality test operator.
33
- # @param value [Integer]
34
- # @return [self]
35
- # @overload assign(value)
36
- # Equality test operator.
37
- # @param value [true,false]
38
- # @return [self]
39
- # @overload assign(value)
40
- # Equality test operator.
41
- # @param value [Float]
42
- # @return [self]
43
- # @overload assign(value)
44
- # Equality test operator.
45
- # @param value [Integer]
46
- # @return [self]
47
- # @overload assign(value)
48
- # Equality test operator.
49
- # @param value [Integer]
50
- # @return [self]
51
- # @overload assign(value)
52
- # Equality test operator.
53
- # @param value [Object]
54
- # @return [self]
55
- # @overload assign(value)
56
- # Equality test operator.
57
- # @param value [Wx::Object]
58
- # @return [self]
59
- # @overload assign(value)
60
- # Equality test operator.
61
- # @param value [Array<Wx::Variant>]
62
- # @return [self]
63
- # @overload assign(value)
64
- # Equality test operator.
65
- # @param value [Array<String>]
66
- # @return [self]
67
- # @overload assign(value)
68
- # Equality test operator.
69
- # @param value [Time,Date,DateTime]
70
- # @return [self]
71
- def assign(*args) end
72
- alias :<< :assign
73
-
74
- # Convert contained object to integer value if possible.
75
- # Raises TypeError exception if incompatible.
76
- # @return [Integer] integer value
77
- def to_i; end
78
-
79
- # Convert contained object to floating point value if possible.
80
- # Raises TypeError exception if incompatible.
81
- # @return [Float] floating point value
82
- def to_f; end
83
-
84
- # Convert contained object to string value if possible.
85
- # Raises TypeError exception if incompatible.
86
- # @return [String] string value
87
- def to_s; end
88
-
89
- # Checks if Variant contains a String value (not null).
90
- # @return [true,false]
91
- def string?; end
92
-
93
- # Checks if Variant contains a boolean value (not null).
94
- # @return [true,false]
95
- def bool?; end
96
-
97
- # Checks if Variant contains a long value (not null).
98
- # @return [true,false]
99
- def long?; end
100
-
101
- # Checks if Variant contains a long long value (not null).
102
- # @return [true,false]
103
- def long_long?; end
104
-
105
- # Checks if Variant contains an unsigned long long value (not null).
106
- # @return [true,false]
107
- def u_long_long?; end
108
-
109
- # Checks if Variant contains an integer value (long|long long|unsigned long long).
110
- # @return [true,false]
111
- def integer?; end
112
-
113
- # Checks if Variant contains a (wx)DateTime value (not null).
114
- # (Note that the DateTime values in question concern wxDateTime
115
- # and not the Ruby DateTime class; in fact wxDateTime is normally
116
- # returned as a Ruby Time value)
117
- # @return [true,false]
118
- def date_time?; end
119
-
120
- # Checks if Variant contains a double value (not null).
121
- # @return [true,false]
122
- def double?; end
123
-
124
- # Checks if Variant contains an integer value (integer | double).
125
- # @return [true,false]
126
- def numeric?; end
127
-
128
- # Checks if Variant contains a VariantList (array of Variant) value (not null).
129
- # @return [true,false]
130
- def list?; end
131
-
132
- # Checks if Variant contains an ArrayString (array of String) value (not null).
133
- # @return [true,false]
134
- def array_string?; end
135
-
136
- # Checks if Variant contains a Font value (not null).
137
- # @return [true,false]
138
- def font?; end
139
-
140
- # Returns font value.
141
- # @return [Wx::Font]
142
- def get_font; end
143
- alias :font :get_font
144
-
145
- # Checks if Variant contains a Colour value (not null).
146
- # @return [true,false]
147
- def colour?; end
148
-
149
- # Returns colour value.
150
- # @return [Wx::Colour]
151
- def get_colour; end
152
- alias :colour :get_colour
153
-
154
- # Checks if Variant contains a ColourPropertyValue value (not null).
155
- # @return [true,false]
156
- def colour_property_value?; end
157
-
158
- # Returns colour property value.
159
- # @return [Wx::PG::ColourPropertyValue]
160
- def get_colour_property_value; end
161
- alias :colour_property_value :get_colour_property_value
162
-
163
- # Checks if Variant contains an unspecified Ruby object (not null or
164
- # nil and not one of the other value types).
165
- # @param [Class] klass the (base) class of the Ruby object to check
166
- # @return [true,false]
167
- def object?(klass=Object) end
8
+ module Wx
9
+
10
+ class Variant
11
+
12
+ include ::Enumerable
13
+
14
+ # When a block is given iterates all items of a variant list passing
15
+ # each item to the block.
16
+ # Returns an enumerator when no block is given.
17
+ # @overload each(&block)
18
+ # @yieldparam item [Wx::Variant] variant list item
19
+ # @return [Object] result of last block execution
20
+ # @overload each
21
+ # @return [Enumerator] an enumerator
22
+ def each; end
23
+
24
+ # Replaces the value of the current variant with the given value
25
+ # @overload assign(value)
26
+ # Equality test operator.
27
+ # @param value [Wx::Variant]
28
+ # @return [self]
29
+ # @overload assign(value)
30
+ # Equality test operator.
31
+ # @param value [String]
32
+ # @return [self]
33
+ # @overload assign(value)
34
+ # Equality test operator.
35
+ # @param value [Integer]
36
+ # @return [self]
37
+ # @overload assign(value)
38
+ # Equality test operator.
39
+ # @param value [true,false]
40
+ # @return [self]
41
+ # @overload assign(value)
42
+ # Equality test operator.
43
+ # @param value [Float]
44
+ # @return [self]
45
+ # @overload assign(value)
46
+ # Equality test operator.
47
+ # @param value [Integer]
48
+ # @return [self]
49
+ # @overload assign(value)
50
+ # Equality test operator.
51
+ # @param value [Integer]
52
+ # @return [self]
53
+ # @overload assign(value)
54
+ # Equality test operator.
55
+ # @param value [Object]
56
+ # @return [self]
57
+ # @overload assign(value)
58
+ # Equality test operator.
59
+ # @param value [Wx::Object]
60
+ # @return [self]
61
+ # @overload assign(value)
62
+ # Equality test operator.
63
+ # @param value [Array<Wx::Variant>]
64
+ # @return [self]
65
+ # @overload assign(value)
66
+ # Equality test operator.
67
+ # @param value [Array<String>]
68
+ # @return [self]
69
+ # @overload assign(value)
70
+ # Equality test operator.
71
+ # @param value [Time,Date,DateTime]
72
+ # @return [self]
73
+ def assign(*args) end
74
+ alias :<< :assign
75
+
76
+ # Convert contained object to integer value if possible.
77
+ # Raises TypeError exception if incompatible.
78
+ # @return [Integer] integer value
79
+ def to_i; end
80
+
81
+ # Convert contained object to floating point value if possible.
82
+ # Raises TypeError exception if incompatible.
83
+ # @return [Float] floating point value
84
+ def to_f; end
85
+
86
+ # Convert contained object to string value if possible.
87
+ # Raises TypeError exception if incompatible.
88
+ # @return [String] string value
89
+ def to_s; end
90
+
91
+ # Checks if Variant contains a String value (not null).
92
+ # @return [true,false]
93
+ def string?; end
94
+
95
+ # Checks if Variant contains a boolean value (not null).
96
+ # @return [true,false]
97
+ def bool?; end
98
+
99
+ # Checks if Variant contains a long value (not null).
100
+ # @return [true,false]
101
+ def long?; end
102
+
103
+ # Checks if Variant contains a long long value (not null).
104
+ # @return [true,false]
105
+ def long_long?; end
106
+
107
+ # Checks if Variant contains an unsigned long long value (not null).
108
+ # @return [true,false]
109
+ def u_long_long?; end
110
+
111
+ # Checks if Variant contains an integer value (long|long long|unsigned long long).
112
+ # @return [true,false]
113
+ def integer?; end
114
+
115
+ # Checks if Variant contains a (wx)DateTime value (not null).
116
+ # (Note that the DateTime values in question concern wxDateTime
117
+ # and not the Ruby DateTime class; in fact wxDateTime is normally
118
+ # returned as a Ruby Time value)
119
+ # @return [true,false]
120
+ def date_time?; end
121
+
122
+ # Checks if Variant contains a double value (not null).
123
+ # @return [true,false]
124
+ def double?; end
125
+
126
+ # Checks if Variant contains an integer value (integer | double).
127
+ # @return [true,false]
128
+ def numeric?; end
129
+
130
+ # Checks if Variant contains a VariantList (array of Variant) value (not null).
131
+ # @return [true,false]
132
+ def list?; end
133
+
134
+ # Checks if Variant contains an ArrayString (array of String) value (not null).
135
+ # @return [true,false]
136
+ def array_string?; end
137
+
138
+ # Checks if Variant contains a Font value (not null).
139
+ # @return [true,false]
140
+ def font?; end
141
+
142
+ # Returns font value.
143
+ # @return [Wx::Font]
144
+ def get_font; end
145
+ alias :font :get_font
146
+
147
+ # Checks if Variant contains a Colour value (not null).
148
+ # @return [true,false]
149
+ def colour?; end
150
+
151
+ # Returns colour value.
152
+ # @return [Wx::Colour]
153
+ def get_colour; end
154
+ alias :colour :get_colour
155
+
156
+ # Checks if Variant contains a ColourPropertyValue value (not null).
157
+ # @return [true,false]
158
+ def colour_property_value?; end
159
+
160
+ # Returns colour property value.
161
+ # @return [Wx::PG::ColourPropertyValue]
162
+ def get_colour_property_value; end
163
+ alias :colour_property_value :get_colour_property_value
164
+
165
+ # Checks if Variant contains an unspecified Ruby object (not null or
166
+ # nil and not one of the other value types).
167
+ # @param [Class] klass the (base) class of the Ruby object to check
168
+ # @return [true,false]
169
+ def object?(klass=Object) end
170
+
171
+ end
168
172
 
169
173
  end
data/lib/wx/doc/window.rb CHANGED
@@ -5,47 +5,62 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::Window
9
-
10
- # Creates an appropriate (temporary) DC to paint on and
11
- # passes that to the given block. Deletes the DC when the block returns.
12
- # Creates a Wx::PaintDC when called from an evt_paint handler and a
13
- # Wx::ClientDC otherwise.
14
- # @yieldparam [Wx::PaintDC,Wx::ClientDC] dc dc to paint on
15
- # @return [Object] result from block
16
- def paint; end
17
-
18
- # Similar to #paint but this time creates a Wx::AutoBufferedPaintDC when called
19
- # from an evt_paint handler and a Wx::ClientDC otherwise.
20
- # @yieldparam [Wx::AutoBufferedPaintDC,Wx::ClientDC] dc dc to paint on
21
- # @return [Object] result from block
22
- def paint_buffered; end
23
-
24
- # Locks the window from updates while executing the given block.
25
- # @param [Proc] block
26
- def locked(&block); end
27
-
28
- # Find the first child window with the given id recursively in the window hierarchy of this window.
29
- #
30
- # Window with the given id or nil if not found.
31
- # @see Wx::Window.find_window_by_id
32
- # @param id [Integer]
33
- # @return [Wx::Window]
34
- def find_window_by_id(id) end
35
-
36
- # Find the first child window with the given label recursively in the window hierarchy of this window.
37
- #
38
- # Window with the given label or nil if not found.
39
- # @see Wx::Window.find_window_by_label
40
- # @param label [String]
41
- # @return [Wx::Window]
42
- def find_window_by_label(label) end
43
-
44
- # Find the first child window with the given name (as given in a window constructor or {Wx::Window#create} function call) recursively in the window hierarchy of this window.
45
- #
46
- # Window with the given name or nil if not found.
47
- # @param name [String]
48
- # @return [Wx::Window]
49
- def find_window_by_name(name) end
8
+ module Wx
9
+
10
+ class Window
11
+
12
+ # Creates an appropriate (temporary) DC to paint on and
13
+ # passes that to the given block. Deletes the DC when the block returns.
14
+ # Creates a Wx::PaintDC when called from an evt_paint handler and a
15
+ # Wx::ClientDC otherwise.
16
+ # @yieldparam [Wx::PaintDC,Wx::ClientDC] dc dc to paint on
17
+ # @return [Object] result from block
18
+ def paint; end
19
+
20
+ # Similar to #paint but this time creates a Wx::AutoBufferedPaintDC when called
21
+ # from an evt_paint handler and a Wx::ClientDC otherwise.
22
+ # @yieldparam [Wx::AutoBufferedPaintDC,Wx::ClientDC] dc dc to paint on
23
+ # @return [Object] result from block
24
+ def paint_buffered; end
25
+
26
+ # Yield each child window to the given block.
27
+ # Returns an Enumerator if no block given.
28
+ # @yieldparam [Wx::Window] child the child window yielded
29
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
30
+ def each_child; end
31
+
32
+ # Locks the window from updates while executing the given block.
33
+ # @param [Proc] block
34
+ def locked(&block); end
35
+
36
+ # Find the first child window with the given id recursively in the window hierarchy of this window.
37
+ #
38
+ # Window with the given id or nil if not found.
39
+ # @see Wx::Window.find_window_by_id
40
+ # @param id [Integer]
41
+ # @return [Wx::Window]
42
+ def find_window_by_id(id) end
43
+
44
+ # Find the first child window with the given label recursively in the window hierarchy of this window.
45
+ #
46
+ # Window with the given label or nil if not found.
47
+ # @see Wx::Window.find_window_by_label
48
+ # @param label [String]
49
+ # @return [Wx::Window]
50
+ def find_window_by_label(label) end
51
+
52
+ # Find the first child window with the given name (as given in a window constructor or {Wx::Window#create} function call) recursively in the window hierarchy of this window.
53
+ #
54
+ # Window with the given name or nil if not found.
55
+ # @param name [String]
56
+ # @return [Wx::Window]
57
+ def find_window_by_name(name) end
58
+
59
+ # Switches the current sizer with the given sizer and detaches and returns the 'old' sizer.
60
+ # @param [Wx::Sizer] new_sizer new sizer for window
61
+ # @return [Wx::Sizer] previous window sizer
62
+ def switch_sizer(new_sizer) end
63
+
64
+ end
50
65
 
51
66
  end
@@ -5,12 +5,16 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::WindowDisabler
8
+ module Wx
9
9
 
10
- # Disables all top level windows of the application (maybe with the exception of one of them) in
11
- # and enables them back after the given block has returned.
12
- # @param [Wx::Window,nil] to_skip window to exclude from disabling
13
- # @return [void]
14
- def self.disable(to_skip = nil) end
10
+ class WindowDisabler
11
+
12
+ # Disables all top level windows of the application (maybe with the exception of one of them) in
13
+ # and enables them back after the given block has returned.
14
+ # @param [Wx::Window,nil] to_skip window to exclude from disabling
15
+ # @return [void]
16
+ def self.disable(to_skip = nil) end
17
+
18
+ end
15
19
 
16
20
  end
data/lib/wx/grid/grid.rb CHANGED
@@ -12,12 +12,35 @@ module Wx
12
12
  alias :set_table :assign_table
13
13
  alias :table= :assign_table
14
14
 
15
- wx_selected_blocks = instance_method :selected_blocks
16
- define_method :selected_blocks do
15
+ wx_each_selected_block = instance_method :each_selected_block
16
+ define_method :each_selected_block do
17
17
  if block_given?
18
- wx_selected_blocks.bind(self).call
18
+ wx_each_selected_block.bind(self).call
19
19
  else
20
- ::Enumerator.new { |y| wx_selected_blocks.bind(self).call { |sb| y << sb } }
20
+ ::Enumerator.new { |y| wx_each_selected_block.bind(self).call { |sb| y << sb } }
21
+ end
22
+ end
23
+
24
+ def get_selected_blocks
25
+ each_selected_block.to_a
26
+ end
27
+ alias :selected_blocks :get_selected_blocks
28
+
29
+ wx_each_selected_row_block = instance_method :each_selected_row_block
30
+ define_method :each_selected_row_block do
31
+ if block_given?
32
+ wx_each_selected_row_block.bind(self).call
33
+ else
34
+ ::Enumerator.new { |y| wx_each_selected_row_block.bind(self).call { |sb| y << sb } }
35
+ end
36
+ end
37
+
38
+ wx_each_selected_col_block = instance_method :each_selected_col_block
39
+ define_method :each_selected_col_block do
40
+ if block_given?
41
+ wx_each_selected_col_block.bind(self).call
42
+ else
43
+ ::Enumerator.new { |y| wx_each_selected_col_block.bind(self).call { |sb| y << sb } }
21
44
  end
22
45
  end
23
46
 
@@ -349,8 +349,6 @@ Wx::define_keyword_ctors(Wx::ComboCtrl) do
349
349
  wx_ctor_params :validator, :name => 'comboCtrl'
350
350
  end
351
351
 
352
- # wxDatePickerCtrl Small date picker control
353
-
354
352
  # wxGauge A control to represent a varying quantity, such as time
355
353
  # remaining
356
354
  Wx::define_keyword_ctors(Wx::Gauge) do
@@ -514,8 +512,50 @@ Wx::define_keyword_ctors(Wx::VListBox) do
514
512
  wx_ctor_params :id, :pos, :size, :style, :name => 'VListBoxNameStr'
515
513
  end
516
514
 
515
+ # wxDatePickerCtrl Small date picker control
517
516
  Wx::define_keyword_ctors(Wx::DatePickerCtrl) do
518
- wx_ctor_params :id, :dt, :pos, :size, :style, :validator, :name => 'dateCtrl'
517
+ wx_ctor_params :id, :dt, :pos, :size, :style => Wx::DP_DEFAULT|Wx::DP_SHOWCENTURY
518
+ wx_ctor_params :validator, :name => 'datePickerCtrl'
519
+ end
520
+
521
+ Wx::define_keyword_ctors(Wx::TimePickerCtrl) do
522
+ wx_ctor_params :id, :dt, :pos, :size, :style => Wx::TP_DEFAULT
523
+ wx_ctor_params :validator, :name => 'timePickerCtrl'
524
+ end
525
+
526
+ Wx::define_keyword_ctors(Wx::ColourPickerCtrl) do
527
+ wx_ctor_params :id, :colour => :BLACK
528
+ wx_ctor_params :pos, :size, :style => Wx::CLRP_DEFAULT_STYLE
529
+ wx_ctor_params :validator, :name => 'colourPickerCtrl'
530
+ end
531
+
532
+ Wx::define_keyword_ctors(Wx::FontPickerCtrl) do
533
+ wx_ctor_params :id, :font => Wx::NULL_FONT
534
+ wx_ctor_params :pos, :size, :style => Wx::FNTP_DEFAULT_STYLE
535
+ wx_ctor_params :validator, :name => 'fontPickerCtrl'
536
+ end
537
+
538
+ Wx::define_keyword_ctors(Wx::FilePickerCtrl) do
539
+ wx_ctor_params :id, :path => ''
540
+ wx_ctor_params :message => Wx::FILE_SELECTOR_PROMPT_STR
541
+ wx_ctor_params :wildcard => Wx::FILE_SELECTOR_DEFAULT_WILDCARD_STR
542
+ wx_ctor_params :pos, :size, :style => Wx::FLP_DEFAULT_STYLE
543
+ wx_ctor_params :validator, :name => 'filePickerCtrl'
544
+ end
545
+
546
+ Wx::define_keyword_ctors(Wx::DirPickerCtrl) do
547
+ wx_ctor_params :id, :path => ''
548
+ wx_ctor_params :message => Wx::DIR_SELECTOR_PROMPT_STR
549
+ wx_ctor_params :pos, :size, :style => Wx::DIRP_DEFAULT_STYLE
550
+ wx_ctor_params :validator, :name => 'dirPickerCtrl'
551
+ end
552
+
553
+ Wx::define_keyword_ctors(Wx::FileCtrl) do
554
+ wx_ctor_params :id, :defaultDirectory => ''
555
+ wx_ctor_params :defaultFilename => ''
556
+ wx_ctor_params :wildcard => Wx::FILE_SELECTOR_DEFAULT_WILDCARD_STR
557
+ wx_ctor_params :style => Wx::FC_DEFAULT_STYLE
558
+ wx_ctor_params :pos, :size, :name => 'fileCtrl'
519
559
  end
520
560
 
521
561
  Wx::define_keyword_ctors(Wx::ActivityIndicator) do
@@ -542,6 +582,3 @@ Wx::define_keyword_ctors(Wx::RearrangeCtrl) do
542
582
  wx_ctor_params :id, :pos, :size, :order, :items, :style
543
583
  wx_ctor_params :validator, :name => 'rearrangeCtrl'
544
584
  end
545
-
546
- # FIXME - SymbolPickerDialog is hard to because the parent argument is
547
- # in a strange place.
@@ -37,4 +37,26 @@ module Wx::PG
37
37
  alias :attributes= :set_attributes
38
38
  end
39
39
 
40
+ class PGChoices
41
+
42
+ wx_each_label = instance_method :each_label
43
+ define_method :each_label do
44
+ if block_given?
45
+ wx_each_label.bind(self).call
46
+ else
47
+ ::Enumerator.new { |y| wx_each_label.bind(self).call { |lbl| y << lbl } }
48
+ end
49
+ end
50
+
51
+ wx_each_entry = instance_method :each_entry
52
+ define_method :each_entry do
53
+ if block_given?
54
+ wx_each_entry.bind(self).call
55
+ else
56
+ ::Enumerator.new { |y| wx_each_entry.bind(self).call { |entry| y << entry } }
57
+ end
58
+ end
59
+
60
+ end
61
+
40
62
  end
@@ -7,7 +7,10 @@
7
7
  require_relative './ext'
8
8
  require_relative './events/evt_list'
9
9
  require_relative './keyword_defs'
10
+ require_relative './rich_text_ctrl'
10
11
  require_relative './richtext_buffer'
12
+ require_relative './rich_text_composite_object'
13
+ require_relative './rich_text_paragraph'
11
14
  require_relative './richtext_formatting_dialog'
12
15
  require_relative './symbol_picker_dialog'
13
16
  require_relative './richtext_style_organiser_dialog'
@@ -0,0 +1,25 @@
1
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
2
+ #
3
+ # This software is released under the MIT license.
4
+
5
+ module Wx
6
+
7
+ module RTC
8
+
9
+ class RichTextCompositeObject
10
+
11
+ # Overload to provide Enumerator without block
12
+ wx_each_child = instance_method :each_child
13
+ define_method :each_child do |&block|
14
+ if block
15
+ wx_each_child.bind(self).call(&block)
16
+ else
17
+ ::Enumerator.new { |y| wx_each_child.bind(self).call { |rto| y << rto } }
18
+ end
19
+ end
20
+
21
+ end
22
+
23
+ end
24
+
25
+ end