wxruby3 0.9.1 → 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 (153) 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/swig/common.i +1 -1
  6. data/lib/wx/aui/aui_tab_ctrl.rb +18 -0
  7. data/lib/wx/aui/auinotebook.rb +6 -2
  8. data/lib/wx/aui/require.rb +1 -0
  9. data/lib/wx/core/app.rb +2 -2
  10. data/lib/wx/core/collapsible_pane.rb +1 -1
  11. data/lib/wx/core/controlwithitems.rb +8 -6
  12. data/lib/wx/core/menu.rb +10 -0
  13. data/lib/wx/core/notebook.rb +6 -2
  14. data/lib/wx/core/sizer.rb +11 -0
  15. data/lib/wx/core/task_bar_button.rb +19 -0
  16. data/lib/wx/core/textctrl.rb +11 -1
  17. data/lib/wx/core/{treectrl.rb → tree_ctrl.rb} +31 -12
  18. data/lib/wx/core/window.rb +10 -0
  19. data/lib/wx/doc/app.rb +48 -38
  20. data/lib/wx/doc/art_locator.rb +47 -43
  21. data/lib/wx/doc/aui/auimanager.rb +16 -8
  22. data/lib/wx/doc/aui/auinotebook.rb +20 -5
  23. data/lib/wx/doc/clipboard.rb +11 -7
  24. data/lib/wx/doc/colour_dialog.rb +14 -10
  25. data/lib/wx/doc/controlwithitems.rb +17 -7
  26. data/lib/wx/doc/data_object.rb +2 -2
  27. data/lib/wx/doc/evthandler.rb +113 -108
  28. data/lib/wx/doc/font.rb +1 -0
  29. data/lib/wx/doc/gc_dc.rb +6 -1
  30. data/lib/wx/doc/graphics_context.rb +1 -0
  31. data/lib/wx/doc/grid/grid.rb +22 -1
  32. data/lib/wx/doc/help_controller.rb +11 -7
  33. data/lib/wx/doc/html/html_help_controller.rb +12 -4
  34. data/lib/wx/doc/list_ctrl.rb +33 -29
  35. data/lib/wx/doc/menu.rb +20 -0
  36. data/lib/wx/doc/notebook.rb +21 -0
  37. data/lib/wx/doc/pg/events.rb +13 -9
  38. data/lib/wx/doc/pg/pg_property.rb +18 -0
  39. data/lib/wx/doc/progress_dialog.rb +36 -32
  40. data/lib/wx/doc/prt/page_setup_dialog.rb +20 -12
  41. data/lib/wx/doc/prt/print_data.rb +13 -5
  42. data/lib/wx/doc/prt/print_dialog.rb +31 -23
  43. data/lib/wx/doc/prt/printer.rb +20 -12
  44. data/lib/wx/doc/radio_box.rb +19 -15
  45. data/lib/wx/doc/rbn/ribbon_bar.rb +13 -5
  46. data/lib/wx/doc/rbn/ribbon_button_bar.rb +13 -5
  47. data/lib/wx/doc/rbn/ribbon_gallery.rb +13 -5
  48. data/lib/wx/doc/rbn/ribbon_tool_bar.rb +13 -5
  49. data/lib/wx/doc/region_iterator.rb +32 -28
  50. data/lib/wx/doc/rtc/rich_text_composite_object.rb +24 -0
  51. data/lib/wx/doc/rtc/rich_text_ctrl.rb +24 -0
  52. data/lib/wx/doc/rtc/rich_text_paragraph.rb +24 -0
  53. data/lib/wx/doc/rtc/richtext_buffer.rb +27 -19
  54. data/lib/wx/doc/rtc/richtext_printing.rb +17 -9
  55. data/lib/wx/doc/rtc/richtext_style_sheet.rb +17 -9
  56. data/lib/wx/doc/sizer.rb +20 -0
  57. data/lib/wx/doc/stc/styled_text_ctrl.rb +24 -0
  58. data/lib/wx/doc/stream.rb +39 -35
  59. data/lib/wx/doc/system_settings.rb +30 -26
  60. data/lib/wx/doc/text_validator.rb +12 -8
  61. data/lib/wx/doc/textctrl.rb +16 -0
  62. data/lib/wx/doc/tree_ctrl.rb +95 -0
  63. data/lib/wx/doc/treebook.rb +9 -5
  64. data/lib/wx/doc/v_list_box.rb +9 -5
  65. data/lib/wx/doc/variant.rb +164 -160
  66. data/lib/wx/doc/window.rb +57 -47
  67. data/lib/wx/doc/window_disabler.rb +10 -6
  68. data/lib/wx/grid/grid.rb +27 -4
  69. data/lib/wx/pg/pg_property.rb +22 -0
  70. data/lib/wx/rtc/require.rb +3 -0
  71. data/lib/wx/rtc/rich_text_composite_object.rb +25 -0
  72. data/lib/wx/rtc/rich_text_ctrl.rb +25 -0
  73. data/lib/wx/rtc/rich_text_paragraph.rb +25 -0
  74. data/lib/wx/stc/require.rb +1 -0
  75. data/lib/wx/stc/styled_text_ctrl.rb +25 -0
  76. data/lib/wx/version.rb +1 -1
  77. data/rakelib/lib/config/linux.rb +0 -3
  78. data/rakelib/lib/config/macosx.rb +2 -2
  79. data/rakelib/lib/config/mingw.rb +1 -1
  80. data/rakelib/lib/config/unixish.rb +1 -1
  81. data/rakelib/lib/config.rb +14 -4
  82. data/rakelib/lib/core/package.rb +14 -7
  83. data/rakelib/lib/core/spec.rb +6 -1
  84. data/rakelib/lib/director/accelerator.rb +2 -3
  85. data/rakelib/lib/director/accessible.rb +47 -0
  86. data/rakelib/lib/director/app.rb +12 -319
  87. data/rakelib/lib/director/app_traits.rb +10 -12
  88. data/rakelib/lib/director/ctrl_with_items.rb +17 -5
  89. data/rakelib/lib/director/data_format.rb +1 -1
  90. data/rakelib/lib/director/derived_dc.rb +1 -1
  91. data/rakelib/lib/director/dialog.rb +1 -0
  92. data/rakelib/lib/director/drag_image.rb +2 -3
  93. data/rakelib/lib/director/event.rb +2 -2
  94. data/rakelib/lib/director/frame.rb +1 -3
  95. data/rakelib/lib/director/gdicommon.rb +8 -10
  96. data/rakelib/lib/director/graphics_context.rb +2 -4
  97. data/rakelib/lib/director/grid_ctrl.rb +34 -3
  98. data/rakelib/lib/director/icon.rb +5 -2
  99. data/rakelib/lib/director/list_ctrl.rb +5 -6
  100. data/rakelib/lib/director/locale.rb +1 -3
  101. data/rakelib/lib/director/log.rb +1 -4
  102. data/rakelib/lib/director/media_ctrl.rb +54 -0
  103. data/rakelib/lib/director/menu.rb +16 -1
  104. data/rakelib/lib/director/menu_item.rb +2 -2
  105. data/rakelib/lib/director/pgproperties.rb +1 -1
  106. data/rakelib/lib/director/pgproperty.rb +24 -1
  107. data/rakelib/lib/director/property_grid_interface.rb +5 -10
  108. data/rakelib/lib/director/richtext_composite_object.rb +25 -0
  109. data/rakelib/lib/director/richtext_ctrl.rb +14 -4
  110. data/rakelib/lib/director/richtext_formatting_dialog.rb +7 -5
  111. data/rakelib/lib/director/richtext_paragraph_layout_box.rb +9 -7
  112. data/rakelib/lib/director/sizer.rb +15 -0
  113. data/rakelib/lib/director/static_box.rb +4 -5
  114. data/rakelib/lib/director/styled_text_ctrl.rb +12 -0
  115. data/rakelib/lib/director/task_bar_button.rb +30 -0
  116. data/rakelib/lib/director/task_bar_icon.rb +5 -13
  117. data/rakelib/lib/director/textctrl.rb +12 -1
  118. data/rakelib/lib/director/tool_tip.rb +1 -1
  119. data/rakelib/lib/director/top_level_window.rb +4 -5
  120. data/rakelib/lib/director/tree_ctrl.rb +5 -6
  121. data/rakelib/lib/director/variant.rb +1 -1
  122. data/rakelib/lib/director/window.rb +24 -5
  123. data/rakelib/lib/director.rb +4 -4
  124. data/rakelib/lib/extractor/function.rb +6 -6
  125. data/rakelib/lib/extractor.rb +34 -5
  126. data/rakelib/lib/generate/analyzer.rb +8 -3
  127. data/rakelib/lib/generate/doc/busy_info.yaml +0 -2
  128. data/rakelib/lib/generate/doc/clipboard.yaml +0 -2
  129. data/rakelib/lib/generate/doc/cursor.yaml +0 -2
  130. data/rakelib/lib/generate/doc/panel.yaml +7 -0
  131. data/rakelib/lib/generate/doc.rb +76 -14
  132. data/rakelib/lib/specs/interfaces.rb +161 -160
  133. data/rakelib/lib/typemap/common.rb +30 -1
  134. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +74 -2
  135. data/rakelib/yard/templates/default/fulldoc/html/full_list.erb +38 -0
  136. data/rakelib/yard/templates/default/fulldoc/html/setup.rb +39 -0
  137. data/rakelib/yard/templates/default/tags/html/wxrb_require.erb +10 -0
  138. data/rakelib/yard/templates/default/tags/setup.rb +16 -0
  139. data/rakelib/yard/yard-custom-templates.rb +3 -0
  140. data/samples/treectrl/treectrl.rb +1 -1
  141. data/tests/media/beep_lo.wav +0 -0
  142. data/tests/test_list_ctrl.rb +1 -1
  143. data/tests/test_media_ctrl.rb +38 -0
  144. data/tests/test_menu.rb +69 -0
  145. data/tests/test_pg.rb +27 -0
  146. data/tests/test_richtext.rb +45 -0
  147. data/tests/test_sizer.rb +16 -0
  148. data/tests/test_std_controls.rb +42 -1
  149. data/tests/test_styled_text_ctrl.rb +46 -0
  150. data/tests/test_tree_ctrl.rb +138 -0
  151. data/tests/test_window.rb +12 -0
  152. data/tests/testapp_noframe.rb +1 -1
  153. metadata +31 -3
@@ -5,11 +5,15 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::Treebook
8
+ module Wx
9
9
 
10
- # Returns the Wx::TreeCtrl used for this Treebook
11
- # @return [Wx::TreeCtrl] the tree control
12
- def get_tree_ctrl; end
13
- alias :tree_ctrl :get_tree_ctrl
10
+ class Treebook
11
+
12
+ # Returns the Wx::TreeCtrl used for this Treebook
13
+ # @return [Wx::TreeCtrl] the tree control
14
+ def get_tree_ctrl; end
15
+ alias :tree_ctrl :get_tree_ctrl
16
+
17
+ end
14
18
 
15
19
  end
@@ -5,11 +5,15 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::VListBox
8
+ module Wx
9
9
 
10
- # Iterate selected items. Returns Enumerator if no block given.
11
- # @yieldparam [Integer] sel selected item index
12
- # @return [Enumerator,Object] if block given returns last return value of block, Enumerator otherwise
13
- def each_selected; end
10
+ class VListBox
11
+
12
+ # Iterate selected items. Returns Enumerator if no block given.
13
+ # @yieldparam [Integer] sel selected item index
14
+ # @return [Enumerator,Object] if block given returns last return value of block, Enumerator otherwise
15
+ def each_selected; end
16
+
17
+ end
14
18
 
15
19
  end
@@ -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,52 +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
50
-
51
- # Switches the current sizer with the given sizer and detaches and returns the 'old' sizer.
52
- # @param [Wx::Sizer] new_sizer new sizer for window
53
- # @return [Wx::Sizer] previous window sizer
54
- def switch_sizer(new_sizer) 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
55
65
 
56
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
 
@@ -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
@@ -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 RichTextCtrl
10
+
11
+ # Overload to provide Enumerator without block
12
+ wx_each_line = instance_method :each_line
13
+ define_method :each_line do |&block|
14
+ if block
15
+ wx_each_line.bind(self).call(&block)
16
+ else
17
+ ::Enumerator.new { |y| wx_each_line.bind(self).call { |ln| y << ln } }
18
+ end
19
+ end
20
+
21
+ end
22
+
23
+ end
24
+
25
+ end