wxruby3 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
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,19 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::RBN::RibbonToolBar
8
+ module Wx
9
9
 
10
- # Iterate tool items if block given or return enumerator.
11
- # @yieldparam [Integer] tool_id A tool item id
12
- # @return [Object,Enumerator] result from last block execution or an enumerator
13
- def tools; end
10
+ module RBN
11
+
12
+ class RibbonToolBar
13
+
14
+ # Iterate tool items if block given or return enumerator.
15
+ # @yieldparam [Integer] tool_id A tool item id
16
+ # @return [Object,Enumerator] result from last block execution or an enumerator
17
+ def tools; end
18
+
19
+ end
20
+
21
+ end
14
22
 
15
23
  end
@@ -5,33 +5,37 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::RegionIterator
9
-
10
- # Creates a Wx::RegionIterator and passes that to the given block.
11
- # Removes the iterator after the block finishes.
12
- # @param [Wx::Region] region
13
- # @yieldparam [Wx::RegionIterator] region_it
14
- def self.for_region(region) end
15
-
16
- # Creates a Wx::RegionIterator and iterates each rectangle in the region executing the given block
17
- # for each iteration passing the region iterator.
18
- # @param [Wx::Region] region
19
- # @yieldparam [Wx::RegionIterator] region_it
20
- def self.iterate(region) end
21
-
22
- alias :have_rects? :have_rects
23
-
24
- # Moves to the next rectangle of the iterated region.
25
- # @return [void]
26
- def next_rect; end
27
-
28
- # If a block is given the given block is called for each rectangle in the region passing the rectangle.
29
- # If no block is given an Enumerator is returned.
30
- # @overload each(&block)
31
- # @yieldparam [Wx::Rect] rect
32
- # @return [Object]
33
- # @overload each()
34
- # @return [Enumerator]
35
- def each; end
8
+ module Wx
9
+
10
+ class RegionIterator
11
+
12
+ # Creates a Wx::RegionIterator and passes that to the given block.
13
+ # Removes the iterator after the block finishes.
14
+ # @param [Wx::Region] region
15
+ # @yieldparam [Wx::RegionIterator] region_it
16
+ def self.for_region(region) end
17
+
18
+ # Creates a Wx::RegionIterator and iterates each rectangle in the region executing the given block
19
+ # for each iteration passing the region iterator.
20
+ # @param [Wx::Region] region
21
+ # @yieldparam [Wx::RegionIterator] region_it
22
+ def self.iterate(region) end
23
+
24
+ alias :have_rects? :have_rects
25
+
26
+ # Moves to the next rectangle of the iterated region.
27
+ # @return [void]
28
+ def next_rect; end
29
+
30
+ # If a block is given the given block is called for each rectangle in the region passing the rectangle.
31
+ # If no block is given an Enumerator is returned.
32
+ # @overload each(&block)
33
+ # @yieldparam [Wx::Rect] rect
34
+ # @return [Object]
35
+ # @overload each()
36
+ # @return [Enumerator]
37
+ def each; end
38
+
39
+ end
36
40
 
37
41
  end
@@ -0,0 +1,24 @@
1
+ # :stopdoc:
2
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ # :startdoc:
6
+
7
+
8
+ module Wx
9
+
10
+ module RTC
11
+
12
+ class RichTextCompositeObject
13
+
14
+ # Yield each child object to the given block.
15
+ # Returns an Enumerator if no block given.
16
+ # @yieldparam [Wx::RTC::RichTextObject] child the child object yielded
17
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
18
+ def each_child; end
19
+
20
+ end
21
+
22
+ end
23
+
24
+ end
@@ -0,0 +1,24 @@
1
+ # :stopdoc:
2
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ # :startdoc:
6
+
7
+
8
+ module Wx
9
+
10
+ module RTC
11
+
12
+ class RichTextCtrl
13
+
14
+ # Yield each line to the given block.
15
+ # Returns an Enumerator if no block given.
16
+ # @yieldparam [String] line the line yielded
17
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
18
+ def each_line; end
19
+
20
+ end
21
+
22
+ end
23
+
24
+ end
@@ -0,0 +1,24 @@
1
+ # :stopdoc:
2
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ # :startdoc:
6
+
7
+
8
+ module Wx
9
+
10
+ module RTC
11
+
12
+ class RichTextParagraph
13
+
14
+ # Yield each line to the given block.
15
+ # Returns an Enumerator if no block given.
16
+ # @yieldparam [Wx::RTC::RichTextLine] line the line yielded
17
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
18
+ def each_line; end
19
+
20
+ end
21
+
22
+ end
23
+
24
+ end
@@ -5,24 +5,32 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::RTC::RichTextBuffer
9
-
10
- # Iterates all RichTextFileHandler-s and passes each handler to the given block
11
- # or returns an enumerator if no block given.
12
- # @yieldparam [Wx::RTC::RichTextFileHandler] handler
13
- # @return [Object,Enumerator] last result of given block or enumerator
14
- def self.each_handler; end
15
-
16
- # Iterates all RichTextFieldType-s and passes each field type to the given block
17
- # or returns an enumerator if no block given.
18
- # @yieldparam [Wx::RTC::RichTextFieldType] field type
19
- # @return [Object,Enumerator] last result of given block or enumerator
20
- def self.each_field_type; end
21
-
22
- # Iterates all RichTextDrawingHandler-s and passes each handler to the given block
23
- # or returns an enumerator if no block given.
24
- # @yieldparam [Wx::RTC::RichTextDrawingHandler] handler
25
- # @return [Object,Enumerator] last result of given block or enumerator
26
- def self.each_drawing_handler; end
8
+ module Wx
9
+
10
+ module RTC
11
+
12
+ class RichTextBuffer
13
+
14
+ # Iterates all RichTextFileHandler-s and passes each handler to the given block
15
+ # or returns an enumerator if no block given.
16
+ # @yieldparam [Wx::RTC::RichTextFileHandler] handler
17
+ # @return [Object,Enumerator] last result of given block or enumerator
18
+ def self.each_handler; end
19
+
20
+ # Iterates all RichTextFieldType-s and passes each field type to the given block
21
+ # or returns an enumerator if no block given.
22
+ # @yieldparam [Wx::RTC::RichTextFieldType] field type
23
+ # @return [Object,Enumerator] last result of given block or enumerator
24
+ def self.each_field_type; end
25
+
26
+ # Iterates all RichTextDrawingHandler-s and passes each handler to the given block
27
+ # or returns an enumerator if no block given.
28
+ # @yieldparam [Wx::RTC::RichTextDrawingHandler] handler
29
+ # @return [Object,Enumerator] last result of given block or enumerator
30
+ def self.each_drawing_handler; end
31
+
32
+ end
33
+
34
+ end
27
35
 
28
36
  end
@@ -5,16 +5,24 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::RTC::RichTextPrinting
8
+ module Wx
9
9
 
10
- # Returns (a copy of) the print data.
11
- # @return [Wx::PRT::PrintData] print data copy
12
- def get_print_data; end
13
- alias :print_data :get_print_data
10
+ module RTC
14
11
 
15
- # Returns (a copy of) the page setup data.
16
- # @return [Wx::PRT::PageSetupDialogData] page setup data copy
17
- def get_page_setup_data; end
18
- alias :page_setup_data :get_page_setup_data
12
+ class RichTextPrinting
13
+
14
+ # Returns (a copy of) the print data.
15
+ # @return [Wx::PRT::PrintData] print data copy
16
+ def get_print_data; end
17
+ alias :print_data :get_print_data
18
+
19
+ # Returns (a copy of) the page setup data.
20
+ # @return [Wx::PRT::PageSetupDialogData] page setup data copy
21
+ def get_page_setup_data; end
22
+ alias :page_setup_data :get_page_setup_data
23
+
24
+ end
25
+
26
+ end
19
27
 
20
28
  end
@@ -5,16 +5,24 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::RTC::RichTextStyleSheet
8
+ module Wx
9
9
 
10
- # Copy ctor
11
- # @param [Wx::RTC::RichTextStyleSheet] sheet
12
- # @return [Wx::RTC::RichTextStyleSheet]
13
- def initialize(sheet) end
10
+ module RTC
14
11
 
15
- # Copy given style sheet
16
- # @param [Wx::RTC::RichTextStyleSheet] sheet
17
- # @return [void]
18
- def copy(sheet) end
12
+ class RichTextStyleSheet
13
+
14
+ # Copy ctor
15
+ # @param [Wx::RTC::RichTextStyleSheet] sheet
16
+ # @return [Wx::RTC::RichTextStyleSheet]
17
+ def initialize(sheet) end
18
+
19
+ # Copy given style sheet
20
+ # @param [Wx::RTC::RichTextStyleSheet] sheet
21
+ # @return [void]
22
+ def copy(sheet) end
23
+
24
+ end
25
+
26
+ end
19
27
 
20
28
  end
@@ -0,0 +1,20 @@
1
+ # :stopdoc:
2
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ # :startdoc:
6
+
7
+
8
+ module Wx
9
+
10
+ class Sizer
11
+
12
+ # Yield each child item to the given block.
13
+ # Returns an Enumerator if no block given.
14
+ # @yieldparam [Wx::SizerItem] child the child item yielded
15
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
16
+ def each_child; end
17
+
18
+ end
19
+
20
+ end
@@ -0,0 +1,24 @@
1
+ # :stopdoc:
2
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ # :startdoc:
6
+
7
+
8
+ module Wx
9
+
10
+ module STC
11
+
12
+ class StyledTextCtrl
13
+
14
+ # Yield each line to the given block.
15
+ # Returns an Enumerator if no block given.
16
+ # @yieldparam [String] line the line yielded
17
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
18
+ def each_line; end
19
+
20
+ end
21
+
22
+ end
23
+
24
+ end
data/lib/wx/doc/stream.rb CHANGED
@@ -5,40 +5,44 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::InputStream
9
-
10
- # @overload read(size)
11
- # Reads max size bytes from stream.
12
- # @param [Integer] size max number of bytes to read
13
- # @return [String,nil] string with bytes read (nil if none read)
14
- # @overload read(output)
15
- # Reads bytes from stream and writes these to output stream until eof or error.
16
- # @param [IO,Wx::OutputStream] output output stream to write to
17
- # @return [self]
18
- def read(*args); end
19
-
20
- # Reads size bytes from stream (until eof or error).
21
- # @param [Integer] size number of bytes to read
22
- # @return [String,nil] string with bytes read (nil if none read)
23
- def read_all(size); end
24
-
25
- end
26
-
27
- class Wx::OutputStream
28
-
29
- # @overload write(buffer)
30
- # Writes some or all bytes from buffer to stream.
31
- # @param [String] buffer string with bytes to write
32
- # @return [Integer] number of bytes written
33
- # @overload write(input)
34
- # Write bytes read from input stream (until eof or error)
35
- # @param [IO,Wx::InputStream] input input stream to read from
36
- # @return [self]
37
- def write(*args); end
38
-
39
- # Writes bytes from buffer to stream.
40
- # @param [String] buffer string with bytes to write
41
- # @return [Integer] number of bytes written
42
- def write_all(buffer); end
8
+ module Wx
9
+
10
+ class InputStream
11
+
12
+ # @overload read(size)
13
+ # Reads max size bytes from stream.
14
+ # @param [Integer] size max number of bytes to read
15
+ # @return [String,nil] string with bytes read (nil if none read)
16
+ # @overload read(output)
17
+ # Reads bytes from stream and writes these to output stream until eof or error.
18
+ # @param [IO,Wx::OutputStream] output output stream to write to
19
+ # @return [self]
20
+ def read(*args); end
21
+
22
+ # Reads size bytes from stream (until eof or error).
23
+ # @param [Integer] size number of bytes to read
24
+ # @return [String,nil] string with bytes read (nil if none read)
25
+ def read_all(size); end
26
+
27
+ end
28
+
29
+ class OutputStream
30
+
31
+ # @overload write(buffer)
32
+ # Writes some or all bytes from buffer to stream.
33
+ # @param [String] buffer string with bytes to write
34
+ # @return [Integer] number of bytes written
35
+ # @overload write(input)
36
+ # Write bytes read from input stream (until eof or error)
37
+ # @param [IO,Wx::InputStream] input input stream to read from
38
+ # @return [self]
39
+ def write(*args); end
40
+
41
+ # Writes bytes from buffer to stream.
42
+ # @param [String] buffer string with bytes to write
43
+ # @return [Integer] number of bytes written
44
+ def write_all(buffer); end
45
+
46
+ end
43
47
 
44
48
  end
@@ -5,31 +5,35 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::SystemSettings
9
-
10
- # Return the name of the current system appearance if available or empty string otherwise.
11
- #
12
- # This is currently only implemented for macOS and returns a not necessarily user-readable
13
- # string such as "NSAppearanceNameAqua" there and an empty string under all the other platforms.
14
- # @return [String]
15
- def get_appearance_name; end
16
- alias :appearance_name :get_appearance_name
17
-
18
- # Return true if the current system there is explicitly recognized as being a dark theme or if
19
- # the default window background is dark.
20
- #
21
- # This method should be used to check whether custom colours more appropriate for the default (light)
22
- # or dark appearance should be used.
23
- # return [true,false]
24
- def is_appearance_dark; end
25
- alias :appearance_dark? :is_appearance_dark
26
-
27
- # Return true if the default window background is significantly darker than foreground.
28
- #
29
- # This is used by #is_appearance_dark if there is no platform-specific way to determine whether a dark
30
- # mode is being used and is generally not very useful to call directly.
31
- # return [true,false]
32
- def is_appearance_using_dark_background; end
33
- alias :appearance_using_dark_background? :is_appearance_using_dark_background
8
+ module Wx
9
+
10
+ class SystemSettings
11
+
12
+ # Return the name of the current system appearance if available or empty string otherwise.
13
+ #
14
+ # This is currently only implemented for macOS and returns a not necessarily user-readable
15
+ # string such as "NSAppearanceNameAqua" there and an empty string under all the other platforms.
16
+ # @return [String]
17
+ def get_appearance_name; end
18
+ alias :appearance_name :get_appearance_name
19
+
20
+ # Return true if the current system there is explicitly recognized as being a dark theme or if
21
+ # the default window background is dark.
22
+ #
23
+ # This method should be used to check whether custom colours more appropriate for the default (light)
24
+ # or dark appearance should be used.
25
+ # return [true,false]
26
+ def is_appearance_dark; end
27
+ alias :appearance_dark? :is_appearance_dark
28
+
29
+ # Return true if the default window background is significantly darker than foreground.
30
+ #
31
+ # This is used by #is_appearance_dark if there is no platform-specific way to determine whether a dark
32
+ # mode is being used and is generally not very useful to call directly.
33
+ # return [true,false]
34
+ def is_appearance_using_dark_background; end
35
+ alias :appearance_using_dark_background? :is_appearance_using_dark_background
36
+
37
+ end
34
38
 
35
39
  end
@@ -5,14 +5,18 @@
5
5
  # :startdoc:
6
6
 
7
7
 
8
- class Wx::TextValidator
8
+ module Wx
9
9
 
10
- # @overload initialize(validator)
11
- # Copy constructor.
12
- # @param [Wx::TextValidator] validator validator to copy
13
- # @overload initialize(style=Wx::FILTER_NONE)
14
- # Constructor taking a style.
15
- # @param [Integer] style One or more of the {Wx::TextValidatorStyle} styles. See #set_style.
16
- def initialize(*args) end
10
+ class TextValidator
11
+
12
+ # @overload initialize(validator)
13
+ # Copy constructor.
14
+ # @param [Wx::TextValidator] validator validator to copy
15
+ # @overload initialize(style=Wx::FILTER_NONE)
16
+ # Constructor taking a style.
17
+ # @param [Integer] style One or more of the {Wx::TextValidatorStyle} styles. See #set_style.
18
+ def initialize(*args) end
19
+
20
+ end
17
21
 
18
22
  end
@@ -23,6 +23,7 @@ module Wx
23
23
  # ````
24
24
  #
25
25
  # This class is only available if `Wx.has_feature?(:USE_SPELLCHECK)` returns true.
26
+ # @wxrb_require USE_SPELLCHECK
26
27
  class TextProofOptions
27
28
  def initialize(schk=false, gchk=false, lang='')end
28
29
 
@@ -59,6 +60,18 @@ module Wx
59
60
 
60
61
  class TextCtrl
61
62
 
63
+ # Appends the string representation of `obj` to the text value of the control.
64
+ # Calls #to_s to get the string representation of `obj`.
65
+ # @param [Object] obj
66
+ # @return [self]
67
+ def <<(obj) end
68
+
69
+ # Yield each line to the given block.
70
+ # Returns an Enumerator if no block given.
71
+ # @yieldparam [String] line the line yielded
72
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
73
+ def each_line; end
74
+
62
75
  # @overload enable_proof_check(text_proof_options = Wx::TextProofOptions.default)
63
76
  # Enable or disable native spell checking on this text control if it is available on the current platform.
64
77
  # Currently this is supported in WXMSW (when running under Windows 8 or later), WXGTK when using GTK 3 and wxOSX.
@@ -67,6 +80,7 @@ module Wx
67
80
  # When using WXGTK, this method only works if gspell library was available during the wxWidgets library build.
68
81
  # @param [Wx::TextProofOptions] text_proof_options A Wx::TextProofOptions object specifying the desired behaviour of the proof checker (e.g. language to use, spell check, grammar check, etc.) and whether the proof checks should be enabled at all. By default, spelling checks for the current language are enabled. Passing Wx::TextProofOptions.disable disables all the checks.
69
82
  # @return [Boolean] true if proof checking has been successfully enabled or disabled, false otherwise (usually because the corresponding functionality is not available under the current platform or for this type of text control).
83
+ # @wxrb_require USE_SPELLCHECK
70
84
  # @overload enable_proof_check(spell_checking, grammar_checking, language)
71
85
  # Enable or disable native spell checking on this text control if it is available on the current platform.
72
86
  # Currently this is supported in WXMSW (when running under Windows 8 or later), WXGTK when using GTK 3 and wxOSX.
@@ -77,11 +91,13 @@ module Wx
77
91
  # @param [Boolean] grammar_checking
78
92
  # @param [String] language
79
93
  # @return [Boolean] true if proof checking has been successfully enabled or disabled, false otherwise (usually because the corresponding functionality is not available under the current platform or for this type of text control).
94
+ # @wxrb_require USE_SPELLCHECK
80
95
  def enable_proof_check(*opts) end
81
96
 
82
97
  # Returns the current text proofing options.
83
98
  # Only available if `Wx.has_feature?(:USE_SPELLCHECK)` returns true.
84
99
  # @return [Wx::TextProofOptions]
100
+ # @wxrb_require USE_SPELLCHECK
85
101
  def get_proof_check_options; end
86
102
 
87
103
  end
@@ -0,0 +1,95 @@
1
+ # :stopdoc:
2
+ # Copyright (c) 2023 M.J.N. Corino, The Netherlands
3
+ #
4
+ # This software is released under the MIT license.
5
+ # :startdoc:
6
+
7
+
8
+ module Wx
9
+
10
+ class TreeCtrl
11
+
12
+ # Yield each tree item id (recursively) to the given block.
13
+ # Starts at tree item specified or at root if none specified.
14
+ # Returns an Enumerator if no block given.
15
+ # @param [Wx::TreeItemId,nil] start_id
16
+ # @yieldparam [Wx::TreeItemId] child_id the child tree item id yielded
17
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
18
+ def traverse(start_id=nil) end
19
+ alias :each :traverse
20
+
21
+ # Returns the first child; call #get_next_child() for the next child.
22
+ # For this enumeration method a 'cookie' is returned which is opaque for the application but is necessary
23
+ # for the library to make these methods reentrant (i.e. allow more than one enumeration on one and the
24
+ # same object simultaneously). The cookie returned from (and passed to) #get_first_child() and #get_next_child()
25
+ # should be the same variable.
26
+ #
27
+ # Returns an invalid tree item (i.e. Wx::TreeItemId#ok? returns false) if there are no further children.
28
+ # @param [Wx::TreeItemId] parent_id the id of the parent tree item for which to iterate children
29
+ # @return [Array(Wx::TreeItemId, Object)] first child item id (if any) and cookie value
30
+ def get_first_child(parent_id) end
31
+
32
+ # Returns the next child; call #get_first_child() for the first child.
33
+ # For this enumeration function you must pass in a 'cookie' parameter which is opaque for the application
34
+ # but is necessary for the library to make these functions reentrant (i.e. allow more than one enumeration
35
+ # on one and the same object simultaneously). The cookie returned from (and passed to) #get_first_child()
36
+ # and #get_next_child() should be the same variable.
37
+ #
38
+ # Returns an invalid tree item if there are no further children.
39
+ # @param [Wx::TreeItemId] parent_id the id of the parent tree item for which to iterate children
40
+ # @param [Object] cookie cookie value as returned from previous #get_first_cild or #get_next_child call.
41
+ # @return [Array(Wx::TreeItemId, Object)] first child item id (if any) and cookie value
42
+ def get_next_child(parent_id, cookie) end
43
+
44
+ # Iterate all child items of the given parent and yield it's id to the given block.
45
+ # Returns an Enumerator if no block given.
46
+ # @param [Wx::TreeItemId] parent_id
47
+ # @yieldparam [Wx::TreeItemId] child_id the child tree item id yielded
48
+ # @return [Object,Enumerator] last result of block or Enumerator if no block given.
49
+ def each_item_child(parent_id) end
50
+
51
+ # Returns an array of tree item ids of the child items of the given parent.
52
+ # @param [Wx::TreeItemId] parent_id
53
+ # @return [Array<Wx::TreeItemId>]
54
+ def get_item_children(parent_id) end
55
+ alias :item_children :get_item_children
56
+
57
+ # Returns an array of tree item ids of the current child items of the root.
58
+ # Mainly useful for tree control using TR_HIDE_ROOT style where there are
59
+ # multiple root-like items.
60
+ # @return [Array<Wx::TreeItemId>]
61
+ def get_root_items; end
62
+
63
+ # Returns an array of tree item ids of the currently selected items.
64
+ # This function can be called only if the control has the wxTR_MULTIPLE style.
65
+ # @return [Array<Wx::TreeItemId>]
66
+ def get_selections; end
67
+
68
+ # Inserts an item before one identified by its position (pos).
69
+ # pos must be less than or equal to the number of children.
70
+ # The image and selImage parameters are an index within the normal image list specifying
71
+ # the image to use for unselected and selected items, respectively. If image > -1 and
72
+ # selImage is -1, the same image is used for both selected and unselected items.
73
+ # @param [Wx::TreeItemId] parent parent tree item id to insert child item for
74
+ # @param [Integer] pos child item's position to insert before
75
+ # @param [Integer] image image index for unselected item
76
+ # @param [Integer] selImage image index for selected item
77
+ # @param data [Object]
78
+ # @return [Wx::TreeItemId] id of inserted tree item
79
+ def insert_item_before(parent, pos, text, image=-1, selImage=-1, data=nil) end
80
+
81
+ # Starts editing the label of the given item.
82
+ # This function generates a EVT_TREE_BEGIN_LABEL_EDIT event which can be vetoed to prevent the editing from starting.
83
+ # If it does start, a text control, which can be retrieved using GetEditControl(), allowing the user to edit the
84
+ # label interactively is shown.
85
+ # When the editing ends, EVT_TREE_END_LABEL_EDIT event is sent and this event can be vetoed as well to prevent the
86
+ # label from changing. Note that this event is sent both when the user accepts (e.g. by pressing Enter) or cancels
87
+ # (e.g. by pressing Escape) and its handler can use wxTreeEvent::IsEditCancelled() to distinguish between these
88
+ # situations.
89
+ # @param [Wx::TreeItemId] item_id
90
+ # @return [void]
91
+ def edit_label(item_id) end
92
+
93
+ end
94
+
95
+ end