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
data/lib/wx/doc/app.rb CHANGED
@@ -5,42 +5,52 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::App
9
-
10
- # Set the menu item id for the About menu item.
11
- # Default is {Wx::ID_ABOUT}
12
- # @param [Integer] id
13
- def set_mac_about_menu_itemid(id) end
14
- alias :mac_about_menu_itemid= :set_mac_about_menu_itemid
15
-
16
- # Get the current menu item id for the About menu item.
17
- # Default is {Wx::ID_ABOUT}
18
- # @return [Integer]
19
- def get_mac_about_menu_itemid(id) end
20
- alias :mac_about_menu_itemid :get_mac_about_menu_itemid
21
-
22
- # Set the menu item id for the Preferences menu item.
23
- # Default is {Wx::ID_PREFERENCES}
24
- # @param [Integer] id
25
- def set_mac_preferences_menu_itemid(id) end
26
- alias :mac_preferences_menu_itemid= :set_mac_preferences_menu_itemid
27
-
28
- # Get the current menu item id for the Preferences menu item.
29
- # Default is {Wx::ID_PREFERENCES}
30
- # @return [Integer]
31
- def get_mac_preferences_menu_itemid(id) end
32
- alias :mac_preferences_menu_itemid :get_mac_preferences_menu_itemid
33
-
34
- # Set the menu item id for the Exit menu item.
35
- # Default is {Wx::ID_EXIT}
36
- # @param [Integer] id
37
- def set_mac_exit_menu_itemid(id) end
38
- alias :mac_exit_menu_itemid= :set_mac_exit_menu_itemid
39
-
40
- # Get the current menu item id for the Exit menu item.
41
- # Default is {Wx::ID_EXIT}
42
- # @return [Integer]
43
- def get_mac_exit_menu_itemid(id) end
44
- alias :mac_exit_menu_itemid :get_mac_exit_menu_itemid
45
-
8
+ module Wx
9
+
10
+ class App
11
+
12
+ # Set the menu item id for the About menu item.
13
+ # Default is {Wx::ID_ABOUT}
14
+ # @param [Integer] id
15
+ # @wxrb_require WXOSX
16
+ def set_mac_about_menu_itemid(id) end
17
+ alias :mac_about_menu_itemid= :set_mac_about_menu_itemid
18
+
19
+ # Get the current menu item id for the About menu item.
20
+ # Default is {Wx::ID_ABOUT}
21
+ # @return [Integer]
22
+ # @wxrb_require WXOSX
23
+ def get_mac_about_menu_itemid(id) end
24
+ alias :mac_about_menu_itemid :get_mac_about_menu_itemid
25
+
26
+ # Set the menu item id for the Preferences menu item.
27
+ # Default is {Wx::ID_PREFERENCES}
28
+ # @param [Integer] id
29
+ # @wxrb_require WXOSX
30
+ def set_mac_preferences_menu_itemid(id) end
31
+ alias :mac_preferences_menu_itemid= :set_mac_preferences_menu_itemid
32
+
33
+ # Get the current menu item id for the Preferences menu item.
34
+ # Default is {Wx::ID_PREFERENCES}
35
+ # @return [Integer]
36
+ # @wxrb_require WXOSX
37
+ def get_mac_preferences_menu_itemid(id) end
38
+ alias :mac_preferences_menu_itemid :get_mac_preferences_menu_itemid
39
+
40
+ # Set the menu item id for the Exit menu item.
41
+ # Default is {Wx::ID_EXIT}
42
+ # @param [Integer] id
43
+ # @wxrb_require WXOSX
44
+ def set_mac_exit_menu_itemid(id) end
45
+ alias :mac_exit_menu_itemid= :set_mac_exit_menu_itemid
46
+
47
+ # Get the current menu item id for the Exit menu item.
48
+ # Default is {Wx::ID_EXIT}
49
+ # @return [Integer]
50
+ # @wxrb_require WXOSX
51
+ def get_mac_exit_menu_itemid(id) end
52
+ alias :mac_exit_menu_itemid :get_mac_exit_menu_itemid
53
+
54
+ end
55
+
46
56
  end
@@ -9,55 +9,59 @@
9
9
  # :startdoc:
10
10
 
11
11
 
12
- module Wx::ArtLocator
12
+ module Wx
13
13
 
14
- # Default name of art folder.
15
- ART_FOLDER = 'art'
14
+ module ArtLocator
16
15
 
17
- class << self
16
+ # Default name of art folder.
17
+ ART_FOLDER = 'art'
18
18
 
19
- # Returns the base name for the folder holding application art files.
20
- # By default this returns ART_FOLDER
21
- # @return [String]
22
- def art_folder; end
19
+ class << self
23
20
 
24
- # Sets the base name for the folder holding application art files.
25
- # @param [String] name art folder base name
26
- def art_folder=(name) end
21
+ # Returns the base name for the folder holding application art files.
22
+ # By default this returns ART_FOLDER
23
+ # @return [String]
24
+ def art_folder; end
27
25
 
28
- # Adds one or more search paths to look for art files.
29
- # By default ArtLocator#find_art will look only at locations of the caller's
30
- # file path. If search paths have been added though these will be searched
31
- # after the lookup in the caller's path has failed.
32
- def add_search_path(*names) end
33
- alias :add_search_paths :add_search_path
26
+ # Sets the base name for the folder holding application art files.
27
+ # @param [String] name art folder base name
28
+ def art_folder=(name) end
34
29
 
35
- # Searches for the an art file for the given 'art_name'.
36
- # By default the search will be performed at the following locations (in order):
37
- # 1. <art_path>/<#art_folder>/<art_section>/<art_type>/
38
- # 2. <art_path>/<#art_folder>/<art_section>/
39
- # 3. <art_path>/<#art_folder>/
40
- # 4. <art_path>/
41
- # Where 'art_type' is any of <code>:icon</code>, <code>:bitmap</code>, <code>:cursor</code>,
42
- # <code>:image</code> or <code>nil</code>. If 'art_type' is nil the first location will be skipped.
43
- # In case 'art_path' == <code>nil</code> the absolute path to the folder holding the caller's
44
- # code will be used which is determined through ::Kernel#caller_locations.
45
- # If 'art_section' is also <code>nil</code> the basename of the caller's source file will be used.
46
- # At each location the existence of a file with base name 'art_name' and each of the supported
47
- # extensions for the given 'art_type' (see wxWidgets documentation) will be tested. If 'art_type' is nil
48
- # all extensions for all supported bitmap types will be tested (similar to when 'art_type' is :image).
49
- # If an optional Wx::BitmapType is specified through 'bmp_type' the tested extensions will
50
- # be restricted to the extensions supported for specified the bitmap type.
51
- #
52
- # In case additional search paths have been specified through #add_search_path these will be
53
- # searched after the lookup at 'art_path' fails. For each search path the same lookups
54
- # will be performed (replacing 'art_path' by the search path).
55
- # @param [String,Symbol] art_name base name for art file
56
- # @param [Symbol,nil] art_type type of art to look for (:icon, :bitmap, :cursor, :image)
57
- # @param [String,nil] art_path base path to look up the art file
58
- # @param [String,nil] art_section optional owner folder name for art files
59
- # @param [Wx::BitmapType,nil] bmp_type bitmap type of art file
60
- def find_art(art_name, art_type: nil, art_path: nil, art_section: nil, bmp_type: nil) end
30
+ # Adds one or more search paths to look for art files.
31
+ # By default ArtLocator#find_art will look only at locations of the caller's
32
+ # file path. If search paths have been added though these will be searched
33
+ # after the lookup in the caller's path has failed.
34
+ def add_search_path(*names) end
35
+ alias :add_search_paths :add_search_path
36
+
37
+ # Searches for the an art file for the given 'art_name'.
38
+ # By default the search will be performed at the following locations (in order):
39
+ # 1. <art_path>/<#art_folder>/<art_section>/<art_type>/
40
+ # 2. <art_path>/<#art_folder>/<art_section>/
41
+ # 3. <art_path>/<#art_folder>/
42
+ # 4. <art_path>/
43
+ # Where 'art_type' is any of <code>:icon</code>, <code>:bitmap</code>, <code>:cursor</code>,
44
+ # <code>:image</code> or <code>nil</code>. If 'art_type' is nil the first location will be skipped.
45
+ # In case 'art_path' == <code>nil</code> the absolute path to the folder holding the caller's
46
+ # code will be used which is determined through ::Kernel#caller_locations.
47
+ # If 'art_section' is also <code>nil</code> the basename of the caller's source file will be used.
48
+ # At each location the existence of a file with base name 'art_name' and each of the supported
49
+ # extensions for the given 'art_type' (see wxWidgets documentation) will be tested. If 'art_type' is nil
50
+ # all extensions for all supported bitmap types will be tested (similar to when 'art_type' is :image).
51
+ # If an optional Wx::BitmapType is specified through 'bmp_type' the tested extensions will
52
+ # be restricted to the extensions supported for specified the bitmap type.
53
+ #
54
+ # In case additional search paths have been specified through #add_search_path these will be
55
+ # searched after the lookup at 'art_path' fails. For each search path the same lookups
56
+ # will be performed (replacing 'art_path' by the search path).
57
+ # @param [String,Symbol] art_name base name for art file
58
+ # @param [Symbol,nil] art_type type of art to look for (:icon, :bitmap, :cursor, :image)
59
+ # @param [String,nil] art_path base path to look up the art file
60
+ # @param [String,nil] art_section optional owner folder name for art files
61
+ # @param [Wx::BitmapType,nil] bmp_type bitmap type of art file
62
+ def find_art(art_name, art_type: nil, art_path: nil, art_section: nil, bmp_type: nil) end
63
+
64
+ end
61
65
 
62
66
  end
63
67
 
@@ -5,14 +5,22 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::AUI::AuiManager
8
+ module Wx
9
9
 
10
- # Yield each pane to the given block.
11
- # @yieldparam [Wx::AUI::AuiPaneInfo] pane the Aui pane info yielded
12
- def each_pane; end
10
+ module AUI
11
+
12
+ class AuiManager
13
+
14
+ # Yield each pane to the given block.
15
+ # @yieldparam [Wx::AUI::AuiPaneInfo] pane the Aui pane info yielded
16
+ def each_pane; end
17
+
18
+ # Returns an array of all panes managed by the frame manager.
19
+ # @return [Array<Wx::AUI::AuiPaneInfo>] all managed panes
20
+ def get_all_panes; end
21
+ alias_method :all_panes, :get_all_panes
22
+ end
23
+
24
+ end
13
25
 
14
- # Returns an array of all panes managed by the frame manager.
15
- # @return [Array<Wx::AUI::AuiPaneInfo>] all managed panes
16
- def get_all_panes; end
17
- alias_method :all_panes, :get_all_panes
18
26
  end
@@ -5,11 +5,26 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::AUI::AuiNotebook
8
+ module Wx
9
9
 
10
- # Finds tab control and its tab index associated with a given window.
11
- # @param [Wx::Window] page the notebook page window
12
- # @return [Array<Wx::AUI::AuiTabCtrl, Integer>, nil] tab control and index if found else nil
13
- def find_tab(page) end
10
+ module AUI
11
+
12
+ class AuiNotebook
13
+
14
+ # Iterate each notebook page.
15
+ # Passes each page to the given block.
16
+ # Returns an Enumerator if no block given.
17
+ # @yieldparam [Wx::Window] page notebook page
18
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
19
+ def each_page; end
20
+
21
+ # Finds tab control and its tab index associated with a given window.
22
+ # @param [Wx::Window] page the notebook page window
23
+ # @return [Array<Wx::AUI::AuiTabCtrl, Integer>, nil] tab control and index if found else nil
24
+ def find_tab(page) end
25
+
26
+ end
27
+
28
+ end
14
29
 
15
30
  end
@@ -5,14 +5,18 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::Clipboard
8
+ module Wx
9
9
 
10
- alias :place :set_data
11
- alias :fetch :get_data
10
+ class Clipboard
12
11
 
13
- # Opens the global clipboard and passes the clipboard object to the block.
14
- # @yieldparam [Wx::Clipboard] clip the global clipboard object
15
- # @return [Object] block result
16
- def self.open; end
12
+ alias :place :set_data
13
+ alias :fetch :get_data
14
+
15
+ # Opens the global clipboard and passes the clipboard object to the block.
16
+ # @yieldparam [Wx::Clipboard] clip the global clipboard object
17
+ # @return [Object] block result
18
+ def self.open; end
19
+
20
+ end
17
21
 
18
22
  end
@@ -5,17 +5,21 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::ColourDialog
8
+ module Wx
9
9
 
10
- # Returns (a copy of) the colour data of the dialog.
11
- # @return [Wx::ColourData] colour data copy
12
- def get_colour_data; end
13
- alias :colour_data :get_colour_data
10
+ class ColourDialog
14
11
 
15
- # Updates the colour data for the dialog.
16
- # @param [Wx::ColourData] clr_data the colour data to update the dialog with
17
- # @return [void]
18
- def set_colour_data(clr_data); end
19
- alias :colour_data= :set_colour_data
12
+ # Returns (a copy of) the colour data of the dialog.
13
+ # @return [Wx::ColourData] colour data copy
14
+ def get_colour_data; end
15
+ alias :colour_data :get_colour_data
16
+
17
+ # Updates the colour data for the dialog.
18
+ # @param [Wx::ColourData] clr_data the colour data to update the dialog with
19
+ # @return [void]
20
+ def set_colour_data(clr_data); end
21
+ alias :colour_data= :set_colour_data
22
+
23
+ end
20
24
 
21
25
  end
data/lib/wx/doc/const.rb CHANGED
@@ -11,74 +11,74 @@ module Wx
11
11
  These constants are not documented in the wxWidgets interface headers
12
12
  although they are referenced in various argument defaults which *are*
13
13
  in the interface header declarations so we do want them included the
14
- wxRuby docs so the doc links work but we do not need them in the
15
- wxRuby implementation since these are internal to the C++ wrappers.
14
+ wxRuby docs so the doc links work.
16
15
  =end
17
16
 
18
- DefaultDateTimeFormat = '%c'
19
- DefaultTimeSpanFormat = '%H:%M:%S'
17
+ DEFAULT_DATE_TIME_FORMAT = '%c'
18
+ DEFAULT_TIME_SPAN_FORMAT = '%H:%M:%S'
20
19
 
21
- ChoiceNameStr = 'choice'
22
- ColourPickerCtrlNameStr = 'colourpicker'
23
- ColourPickerWidgetNameStr = 'colourpickerwidget'
24
- HyperlinkCtrlNameStr = 'hyperlink'
25
- PanelNameStr = 'panel'
26
- ListBoxNameStr = 'listBox'
27
- FrameNameStr = 'frame'
28
- StatusLineNameStr = 'status_line'
29
- StaticBitmapNameStr = 'staticBitmap'
30
- WebViewNameStr = 'wxWebView'
31
- AnimationCtrlNameStr = 'animationctrl'
32
- ToolBarNameStr = 'toolbar'
33
- TextCtrlNameStr = 'text'
34
- ListCtrlNameStr = 'listCtrl'
35
- FilePickerCtrlNameStr = 'filepicker'
36
- FilePickerWidgetNameStr = 'filepickerwidget'
37
- DirPickerCtrlNameStr = 'dirpicker'
38
- DirPickerWidgetNameStr = 'dirpickerwidget'
39
- FileCtrlNameStr = 'wxfilectrl'
40
- StaticBoxNameStr = 'groupBox'
41
- ButtonNameStr = 'button'
42
- RadioBoxNameStr = 'radioBox'
43
- StaticLineNameStr = 'staticLine'
44
- RadioButtonNameStr = 'radioButton'
45
- BitmapRadioButtonNameStr = 'radioButton'
46
- GaugeNameStr = 'gauge'
47
- DataViewCtrlNameStr = 'dataviewCtrl'
48
- FontPickerCtrlNameStr = 'fontpicker'
49
- FontPickerWidgetNameStr = 'fontpickerwidget'
50
- RearrangeListNameStr = 'wxRearrangeList'
51
- RearrangeDialogNameStr = 'wxRearrangeDlg'
52
- NotebookNameStr = 'notebook'
53
- ControlNameStr = 'control'
54
- ScrollBarNameStr = 'scrollBar'
55
- StatusBarNameStr = 'statusBar'
56
- SliderNameStr = 'slider'
57
- HeaderCtrlNameStr = 'wxHeaderCtrl'
58
- BitmapComboBoxNameStr = 'bitmapComboBox'
59
- CheckBoxNameStr = 'check'
60
- FileDialogNameStr = 'filedlg'
61
- AddRemoveCtrlNameStr = 'wxAddRemoveCtrl'
62
- StaticTextNameStr = 'staticText'
63
- ComboBoxNameStr = 'comboBox'
64
- SearchCtrlNameStr = 'searchCtrl'
65
- DirDialogNameStr = 'wxDirCtrl'
66
- TreeCtrlNameStr = 'treeCtrl'
67
- DialogNameStr = 'dialog'
68
- CollapsibleHeaderCtrlNameStr = 'collapsibleHeader'
69
- CollapsiblePaneNameStr = 'collapsiblePane'
70
- BannerWindowNameStr = 'bannerwindow'
71
- GridNameStr = 'grid'
72
- TreeListCtrlNameStr = 'wxTreeListCtrl'
73
- HtmlListBoxNameStr = 'htmlListBox'
74
- SimpleHtmlListBoxNameStr = 'simpleHtmlListBox'
75
- EditableListBoxNameStr = 'editableListBox'
76
- VListBoxNameStr = 'wxVListBox'
77
- CollapsiblePaneNameStr = 'collapsiblePane'
78
- MSWHeaderCtrlNameStr = 'wxMSWHeaderCtrl'
79
- PropertyGridManagerNameStr = 'wxPropertyGridManager'
80
- PropertyGridNameStr = 'wxPropertyGrid'
81
- STCNameStr = 'stcwindow'
82
- STCNameStr = 'stcwindow'
20
+ CHOICE_NAME_STR = 'choice'
21
+ COLOUR_PICKER_CTRL_NAME_STR = 'colourpicker'
22
+ COLOUR_PICKER_WIDGET_NAME_STR = 'colourpickerwidget'
23
+ HYPERLINK_CTRL_NAME_STR = 'hyperlink'
24
+ PANEL_NAME_STR = 'panel'
25
+ LIST_BOX_NAME_STR = 'listBox'
26
+ FRAME_NAME_STR = 'frame'
27
+ STATUS_LINE_NAME_STR = 'status_line'
28
+ STATIC_BITMAP_NAME_STR = 'staticBitmap'
29
+ WEB_VIEW_NAME_STR = 'wxWebView'
30
+ ANIMATION_CTRL_NAME_STR = 'animationctrl'
31
+ TOOL_BAR_NAME_STR = 'toolbar'
32
+ TEXT_CTRL_NAME_STR = 'text'
33
+ LIST_CTRL_NAME_STR = 'listCtrl'
34
+ FILE_PICKER_CTRL_NAME_STR = 'filepicker'
35
+ FILE_PICKER_WIDGET_NAME_STR = 'filepickerwidget'
36
+ DIR_PICKER_CTRL_NAME_STR = 'dirpicker'
37
+ DIR_PICKER_WIDGET_NAME_STR = 'dirpickerwidget'
38
+ FILE_CTRL_NAME_STR = 'wxfilectrl'
39
+ FILE_SELECTOR_PROMPT_STR = 'Select a file'
40
+ STATIC_BOX_NAME_STR = 'groupBox'
41
+ BUTTON_NAME_STR = 'button'
42
+ RADIO_BOX_NAME_STR = 'radioBox'
43
+ STATIC_LINE_NAME_STR = 'staticLine'
44
+ RADIO_BUTTON_NAME_STR = 'radioButton'
45
+ BITMAP_RADIO_BUTTON_NAME_STR = 'radioButton'
46
+ GAUGE_NAME_STR = 'gauge'
47
+ DATA_VIEW_CTRL_NAME_STR = 'dataviewCtrl'
48
+ FONT_PICKER_CTRL_NAME_STR = 'fontpicker'
49
+ FONT_PICKER_WIDGET_NAME_STR = 'fontpickerwidget'
50
+ REARRANGE_LIST_NAME_STR = 'wxRearrangeList'
51
+ REARRANGE_DIALOG_NAME_STR = 'wxRearrangeDlg'
52
+ NOTEBOOK_NAME_STR = 'notebook'
53
+ CONTROL_NAME_STR = 'control'
54
+ SCROLL_BAR_NAME_STR = 'scrollBar'
55
+ STATUS_BAR_NAME_STR = 'statusBar'
56
+ SLIDER_NAME_STR = 'slider'
57
+ HEADER_CTRL_NAME_STR = 'wxHeaderCtrl'
58
+ BITMAP_COMBO_BOX_NAME_STR = 'bitmapComboBox'
59
+ CHECK_BOX_NAME_STR = 'check'
60
+ FILE_DIALOG_NAME_STR = 'filedlg'
61
+ ADD_REMOVE_CTRL_NAME_STR = 'wxAddRemoveCtrl'
62
+ STATIC_TEXT_NAME_STR = 'staticText'
63
+ COMBO_BOX_NAME_STR = 'comboBox'
64
+ SEARCH_CTRL_NAME_STR = 'searchCtrl'
65
+ TREE_CTRL_NAME_STR = 'treeCtrl'
66
+ DIALOG_NAME_STR = 'dialog'
67
+ COLLAPSIBLE_HEADER_CTRL_NAME_STR = 'collapsibleHeader'
68
+ COLLAPSIBLE_PANE_NAME_STR = 'collapsiblePane'
69
+ BANNER_WINDOW_NAME_STR = 'bannerwindow'
70
+ GRID_NAME_STR = 'grid'
71
+ TREE_LIST_CTRL_NAME_STR = 'wxTreeListCtrl'
72
+ HTML_LIST_BOX_NAME_STR = 'htmlListBox'
73
+ SIMPLE_HTML_LIST_BOX_NAME_STR = 'simpleHtmlListBox'
74
+ EDITABLE_LIST_BOX_NAME_STR = 'editableListBox'
75
+ V_LIST_BOX_NAME_STR = 'wxVListBox'
76
+
77
+ # wxMSW only
78
+ MSW_HEADER_CTRL_NAME_STR = 'wxMSWHeaderCtrl'
79
+
80
+ PROPERTY_GRID_MANAGER_NAME_STR = 'wxPropertyGridManager'
81
+ PROPERTY_GRID_NAME_STR = 'wxPropertyGrid'
82
+ STC_NAME_STR = 'stcwindow'
83
83
 
84
84
  end
@@ -5,13 +5,23 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::ControlWithItems
8
+ module Wx
9
9
 
10
- # Returns true if the items in the control are sorted
11
- # (style Wx::LB_SORT for list boxes or Wx::CB_SORT for combo boxes).
12
- # This method is mostly meant for internal use only.
13
- # @return [Boolean] true is sorted, false otherwise
14
- def is_sorted; end
15
- alias :sorted? :is_sorted
10
+ class ControlWithItems
11
+
12
+ # Yield each string to the given block.
13
+ # Returns an Enumerator if no block given.
14
+ # @yieldparam [String] string the string yielded
15
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
16
+ def each_string; end
17
+
18
+ # Returns true if the items in the control are sorted
19
+ # (style Wx::LB_SORT for list boxes or Wx::CB_SORT for combo boxes).
20
+ # This method is mostly meant for internal use only.
21
+ # @return [Boolean] true is sorted, false otherwise
22
+ def is_sorted; end
23
+ alias :sorted? :is_sorted
24
+
25
+ end
16
26
 
17
27
  end
@@ -27,7 +27,7 @@ module Wx
27
27
  # so the number of virtual functions to be implemented is reduced.
28
28
  # This class is the base class for {Wx::TextDataObject}, {Wx::FileDataObject}, {Wx::BitmapDataObject},
29
29
  # {Wx::wxCustomDataObject} and others.
30
- # ===
30
+ #
31
31
  #
32
32
  # Category: Clipboard and Drag & Drop
33
33
  # @see Drag and Drop Overview
@@ -74,7 +74,7 @@ module Wx
74
74
  # The objects which may be set must override {Wx::DataObjectSimpleBase#_set_data} (which
75
75
  # returns <code>false</code>).
76
76
  # Of course, the objects supporting both operations must override all three methods.
77
- # ===
77
+ #
78
78
  #
79
79
  # Category: Clipboard and Drag & Drop
80
80
  # @see Drag and Drop Overview
data/lib/wx/doc/event.rb CHANGED
@@ -27,10 +27,4 @@ module Wx
27
27
 
28
28
  end
29
29
 
30
- # Find a window with the focus, that is also a descendant of the given window.
31
- # This is used to determine the window to initially send commands to.
32
- # @param [Wx::Window] ancestor
33
- # @return [Wx::Window,nil] descendant window of ancestor with focus
34
- def self.find_focus_descendant(ancestor) end
35
-
36
30
  end