wxruby3 1.7.0 → 1.8.1

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 (522) hide show
  1. checksums.yaml +4 -4
  2. data/INSTALL.md +27 -2
  3. data/README.md +15 -15
  4. data/ext/wxruby3/include/wxRubyApp.h +145 -46
  5. data/ext/wxruby3/include/wxruby-ComboPopup.h +25 -8
  6. data/ext/wxruby3/include/wxruby-GCTracking.h +262 -0
  7. data/ext/wxruby3/include/wxruby-MBConv.h +190 -0
  8. data/ext/wxruby3/include/wxruby-SharedEventHandler.h +183 -0
  9. data/ext/wxruby3/include/wxruby-SharedPtr.h +104 -0
  10. data/ext/wxruby3/include/wxruby-runtime.h +29 -0
  11. data/ext/wxruby3/swig/custom/rubytracking.swg +8 -22
  12. data/ext/wxruby3/swig/custom/wx_ruby_shared_ptr.i +434 -0
  13. data/ext/wxruby3/swig/custom/wx_shared_ptr.i +431 -0
  14. data/ext/wxruby3/swig/mark_free_impl.i +7 -132
  15. data/ext/wxruby3/swig/memory_management.i +8 -44
  16. data/ext/wxruby3/swig/wx.i +46 -73
  17. data/lib/wx/core/const.rb +0 -1
  18. data/lib/wx/core/context_help.rb +17 -0
  19. data/lib/wx/core/cursor.rb +1 -0
  20. data/lib/wx/core/helpcontrollerhelpprovider.rb +10 -2
  21. data/lib/wx/core/mbconv.rb +11 -0
  22. data/lib/wx/core/media_ctrl.rb +31 -0
  23. data/lib/wx/core/top_level_window.rb +7 -0
  24. data/lib/wx/core.rb +6 -0
  25. data/lib/wx/doc/art_provider.rb +17 -0
  26. data/lib/wx/doc/context_help.rb +42 -0
  27. data/lib/wx/doc/core.rb +0 -5
  28. data/lib/wx/doc/functions.rb +10 -0
  29. data/lib/wx/doc/html/html_help_controller.rb +23 -1
  30. data/lib/wx/doc/mbconv.rb +108 -0
  31. data/lib/wx/doc/rt/shared_event_handler.rb +49 -0
  32. data/lib/wx/doc/rt/thread_event.rb +28 -0
  33. data/lib/wx/doc/stream.rb +7 -3
  34. data/lib/wx/doc/webview.rb +40 -0
  35. data/lib/wx/helpers.rb +1 -1
  36. data/lib/wx/html/htmlhelpcontroller.rb +10 -0
  37. data/lib/wx/keyword_defs.rb +11 -0
  38. data/lib/wx/rt/require.rb +8 -0
  39. data/lib/wx/rt/thread_event.rb +14 -0
  40. data/lib/wx/rt.rb +16 -0
  41. data/lib/wx/version.rb +1 -1
  42. data/lib/wx/web/require.rb +8 -0
  43. data/lib/wx/web/webview.rb +106 -0
  44. data/lib/wx/web.rb +17 -0
  45. data/lib/wx/wxruby/cmd/setup.rb +15 -0
  46. data/lib/wx/wxruby/cmd/test.rb +8 -2
  47. data/lib/wx.rb +2 -0
  48. data/rakelib/configure.rb +24 -0
  49. data/rakelib/gem.rb +3 -2
  50. data/rakelib/install.rb +54 -27
  51. data/rakelib/lib/config/macosx.rb +7 -5
  52. data/rakelib/lib/config/mingw.rb +66 -5
  53. data/rakelib/lib/config/pkgman/linux.rb +4 -2
  54. data/rakelib/lib/config/pkgman/mingw.rb +1 -1
  55. data/rakelib/lib/config/unixish.rb +4 -2
  56. data/rakelib/lib/config.rb +37 -3
  57. data/rakelib/lib/core/include/client_data.inc +38 -17
  58. data/rakelib/lib/core/include/funcall.inc +1 -1
  59. data/rakelib/lib/core/include/swigdirector.inc +3 -3
  60. data/rakelib/lib/core/include/swigrubyrun.inc +14 -26
  61. data/rakelib/lib/core/package.rb +0 -2
  62. data/rakelib/lib/director/app.rb +1 -8
  63. data/rakelib/lib/director/art_provider.rb +7 -3
  64. data/rakelib/lib/director/comboctrl.rb +0 -7
  65. data/rakelib/lib/director/context_help_button.rb +35 -2
  66. data/rakelib/lib/director/derived_dc.rb +41 -32
  67. data/rakelib/lib/director/editable_listbox.rb +10 -8
  68. data/rakelib/lib/director/event_handler.rb +32 -28
  69. data/rakelib/lib/director/fs_file.rb +38 -10
  70. data/rakelib/lib/director/functions.rb +8 -0
  71. data/rakelib/lib/director/grid_cell_attr.rb +1 -3
  72. data/rakelib/lib/director/grid_cell_editor.rb +14 -12
  73. data/rakelib/lib/director/grid_cell_renderer.rb +11 -8
  74. data/rakelib/lib/director/grid_ctrl.rb +140 -121
  75. data/rakelib/lib/director/help_controller.rb +70 -2
  76. data/rakelib/lib/director/mb_conv.rb +30 -0
  77. data/rakelib/lib/director/menu.rb +92 -42
  78. data/rakelib/lib/director/menu_bar.rb +84 -45
  79. data/rakelib/lib/director/menu_item.rb +2 -2
  80. data/rakelib/lib/director/persistence_manager.rb +3 -2
  81. data/rakelib/lib/director/preview_frame.rb +2 -2
  82. data/rakelib/lib/director/ribbon_page.rb +11 -0
  83. data/rakelib/lib/director/richtext_buffer.rb +5 -2
  84. data/rakelib/lib/director/shared_evt_handler.rb +30 -0
  85. data/rakelib/lib/director/sizer.rb +8 -17
  86. data/rakelib/lib/director/sizer_item.rb +3 -4
  87. data/rakelib/lib/director/task_bar_icon.rb +7 -7
  88. data/rakelib/lib/director/thread_event.rb +33 -0
  89. data/rakelib/lib/director/top_level_window.rb +12 -4
  90. data/rakelib/lib/director/validator.rb +3 -1
  91. data/rakelib/lib/director/variant.rb +16 -12
  92. data/rakelib/lib/director/webview.rb +166 -0
  93. data/rakelib/lib/director/webview_event.rb +37 -0
  94. data/rakelib/lib/director/webview_handler.rb +63 -0
  95. data/rakelib/lib/generate/doc/thread_event.yaml +20 -0
  96. data/rakelib/lib/generate/doc/web_view.yaml +135 -0
  97. data/rakelib/lib/generate/doc/web_view_event.yaml +38 -0
  98. data/rakelib/lib/generate/doc/web_view_handler.yaml +58 -0
  99. data/rakelib/lib/specs/interfaces.rb +14 -2
  100. data/rakelib/lib/typemap/common.rb +34 -1
  101. data/rakelib/lib/typemap/mb_conv.rb +58 -0
  102. data/rakelib/prepost.rake +23 -31
  103. data/rakelib/prepost.rb +20 -0
  104. data/samples/event/threaded.rb +295 -42
  105. data/samples/event/tn_threaded.png +0 -0
  106. data/samples/help/doc/back.gif +0 -0
  107. data/samples/help/doc/contents.gif +0 -0
  108. data/samples/help/doc/cshelp.txt +9 -0
  109. data/samples/help/doc/doc.chm +0 -0
  110. data/samples/help/doc/doc.cnt +8 -0
  111. data/samples/help/doc/doc.h +7 -0
  112. data/samples/help/doc/doc.hhc +40 -0
  113. data/samples/help/doc/doc.hhk +31 -0
  114. data/samples/help/doc/doc.hhp +33 -0
  115. data/samples/help/doc/doc.hpj +21 -0
  116. data/samples/help/doc/doc.htm +27 -0
  117. data/samples/help/doc/doc1.htm +24 -0
  118. data/samples/help/doc/doc2.htm +12 -0
  119. data/samples/help/doc/doc3.htm +12 -0
  120. data/samples/help/doc/doc4.htm +12 -0
  121. data/samples/help/doc/doc5.htm +14 -0
  122. data/samples/help/doc/forward.gif +0 -0
  123. data/samples/help/doc/up.gif +0 -0
  124. data/samples/help/doc.chm +0 -0
  125. data/samples/help/doc.chw +0 -0
  126. data/samples/help/doc.zip +0 -0
  127. data/samples/help/help.rb +352 -0
  128. data/samples/help/tn_help.png +0 -0
  129. data/samples/webview/handler_advanced.html +55 -0
  130. data/samples/webview/tn_webview.png +0 -0
  131. data/samples/webview/webview.rb +1264 -0
  132. data/tests/assets/handler_advanced.html +55 -0
  133. data/tests/assets/test.zip +0 -0
  134. data/tests/lib/text_entry_tests.rb +2 -2
  135. data/tests/lib/wxapp_runner.rb +40 -0
  136. data/tests/lib/wxframe_runner.rb +17 -2
  137. data/tests/test_art.rb +8 -8
  138. data/tests/test_clipboard.rb +4 -4
  139. data/tests/test_config.rb +6 -6
  140. data/tests/test_exceptions.rb +8 -6
  141. data/tests/test_ext_controls.rb +3 -3
  142. data/tests/test_file_dialog.rb +5 -5
  143. data/tests/test_font.rb +7 -7
  144. data/tests/test_grid_ctrl.rb +133 -0
  145. data/tests/test_help.rb +88 -0
  146. data/tests/test_intl.rb +1 -1
  147. data/tests/test_media_ctrl.rb +14 -6
  148. data/tests/test_menu.rb +94 -86
  149. data/tests/test_persistence.rb +1 -1
  150. data/tests/test_proof_check.rb +5 -5
  151. data/tests/test_propgrid.rb +1 -1
  152. data/tests/test_shared_event_handler.rb +141 -0
  153. data/tests/test_std_controls.rb +5 -5
  154. data/tests/test_webview.rb +492 -0
  155. data/tests/test_window.rb +3 -3
  156. metadata +66 -368
  157. data/assets/repo-social-preview.odg +0 -0
  158. data/assets/repo-social-preview.xcf +0 -0
  159. data/lib/wx/aui/events/evt_list.rb +0 -148
  160. data/lib/wx/core/events/evt_list.rb +0 -1458
  161. data/lib/wx/core/font/encoding.rb +0 -113
  162. data/lib/wx/doc/gen/about_dialog_info.rb +0 -330
  163. data/lib/wx/doc/gen/accelerator.rb +0 -178
  164. data/lib/wx/doc/gen/activity_indicator.rb +0 -83
  165. data/lib/wx/doc/gen/affine_matrix2d.rb +0 -284
  166. data/lib/wx/doc/gen/animation.rb +0 -275
  167. data/lib/wx/doc/gen/animation_ctrl.rb +0 -300
  168. data/lib/wx/doc/gen/any_button.rb +0 -191
  169. data/lib/wx/doc/gen/app.rb +0 -463
  170. data/lib/wx/doc/gen/app_traits.rb +0 -396
  171. data/lib/wx/doc/gen/art_provider.rb +0 -605
  172. data/lib/wx/doc/gen/aui/aui_dock_art.rb +0 -455
  173. data/lib/wx/doc/gen/aui/aui_floating_frame.rb +0 -54
  174. data/lib/wx/doc/gen/aui/aui_manager.rb +0 -847
  175. data/lib/wx/doc/gen/aui/aui_manager_event.rb +0 -131
  176. data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +0 -180
  177. data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +0 -59
  178. data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +0 -130
  179. data/lib/wx/doc/gen/aui/aui_notebook.rb +0 -631
  180. data/lib/wx/doc/gen/aui/aui_notebook_event.rb +0 -233
  181. data/lib/wx/doc/gen/aui/aui_pane_info.rb +0 -769
  182. data/lib/wx/doc/gen/aui/aui_tab_art.rb +0 -352
  183. data/lib/wx/doc/gen/aui/aui_tab_ctrl.rb +0 -14
  184. data/lib/wx/doc/gen/aui/aui_tool_bar.rb +0 -510
  185. data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +0 -340
  186. data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +0 -244
  187. data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +0 -257
  188. data/lib/wx/doc/gen/aui/event_list.rb +0 -179
  189. data/lib/wx/doc/gen/banner_window.rb +0 -124
  190. data/lib/wx/doc/gen/bitmap.rb +0 -731
  191. data/lib/wx/doc/gen/bitmap_button.rb +0 -123
  192. data/lib/wx/doc/gen/bitmap_combo_box.rb +0 -221
  193. data/lib/wx/doc/gen/book_ctrl_base.rb +0 -273
  194. data/lib/wx/doc/gen/book_ctrl_event.rb +0 -66
  195. data/lib/wx/doc/gen/box_sizer.rb +0 -85
  196. data/lib/wx/doc/gen/brush.rb +0 -251
  197. data/lib/wx/doc/gen/busy_info.rb +0 -157
  198. data/lib/wx/doc/gen/button.rb +0 -182
  199. data/lib/wx/doc/gen/calculate_layout_event.rb +0 -62
  200. data/lib/wx/doc/gen/calendar_ctrl.rb +0 -505
  201. data/lib/wx/doc/gen/calendar_date_attr.rb +0 -138
  202. data/lib/wx/doc/gen/calendar_event.rb +0 -147
  203. data/lib/wx/doc/gen/caret.rb +0 -97
  204. data/lib/wx/doc/gen/check_box.rb +0 -175
  205. data/lib/wx/doc/gen/check_list_box.rb +0 -121
  206. data/lib/wx/doc/gen/choice.rb +0 -175
  207. data/lib/wx/doc/gen/choicebook.rb +0 -116
  208. data/lib/wx/doc/gen/client_dc.rb +0 -43
  209. data/lib/wx/doc/gen/clipboard.rb +0 -144
  210. data/lib/wx/doc/gen/collapsible_pane.rb +0 -138
  211. data/lib/wx/doc/gen/collapsible_pane_event.rb +0 -46
  212. data/lib/wx/doc/gen/colour.rb +0 -333
  213. data/lib/wx/doc/gen/colour_dialog.rb +0 -190
  214. data/lib/wx/doc/gen/colour_picker_ctrl.rb +0 -110
  215. data/lib/wx/doc/gen/colour_picker_event.rb +0 -77
  216. data/lib/wx/doc/gen/combo_box.rb +0 -292
  217. data/lib/wx/doc/gen/combo_ctrl.rb +0 -662
  218. data/lib/wx/doc/gen/command_link_button.rb +0 -134
  219. data/lib/wx/doc/gen/config_base.rb +0 -10
  220. data/lib/wx/doc/gen/context_help_button.rb +0 -109
  221. data/lib/wx/doc/gen/control.rb +0 -277
  222. data/lib/wx/doc/gen/control_with_items.rb +0 -253
  223. data/lib/wx/doc/gen/core.rb +0 -45
  224. data/lib/wx/doc/gen/credential_entry_dialog.rb +0 -137
  225. data/lib/wx/doc/gen/cursor.rb +0 -193
  226. data/lib/wx/doc/gen/data_format.rb +0 -85
  227. data/lib/wx/doc/gen/data_object.rb +0 -436
  228. data/lib/wx/doc/gen/data_object_simple_base.rb +0 -10
  229. data/lib/wx/doc/gen/date_event.rb +0 -49
  230. data/lib/wx/doc/gen/date_picker_ctrl.rb +0 -161
  231. data/lib/wx/doc/gen/dc.rb +0 -1631
  232. data/lib/wx/doc/gen/dc_overlay.rb +0 -102
  233. data/lib/wx/doc/gen/defs.rb +0 -2802
  234. data/lib/wx/doc/gen/dial_up_event.rb +0 -45
  235. data/lib/wx/doc/gen/dial_up_manager.rb +0 -149
  236. data/lib/wx/doc/gen/dialog.rb +0 -541
  237. data/lib/wx/doc/gen/dir_dialog.rb +0 -164
  238. data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +0 -90
  239. data/lib/wx/doc/gen/dir_picker_ctrl.rb +0 -125
  240. data/lib/wx/doc/gen/display.rb +0 -238
  241. data/lib/wx/doc/gen/drag_drop.rb +0 -299
  242. data/lib/wx/doc/gen/drag_image.rb +0 -116
  243. data/lib/wx/doc/gen/editable_list_box.rb +0 -109
  244. data/lib/wx/doc/gen/event.rb +0 -990
  245. data/lib/wx/doc/gen/event_blocker.rb +0 -50
  246. data/lib/wx/doc/gen/event_filter.rb +0 -92
  247. data/lib/wx/doc/gen/event_list.rb +0 -1644
  248. data/lib/wx/doc/gen/events.rb +0 -2809
  249. data/lib/wx/doc/gen/evt_handler.rb +0 -229
  250. data/lib/wx/doc/gen/ext_help_controller.rb +0 -109
  251. data/lib/wx/doc/gen/file_ctrl.rb +0 -231
  252. data/lib/wx/doc/gen/file_ctrl_event.rb +0 -83
  253. data/lib/wx/doc/gen/file_dialog.rb +0 -353
  254. data/lib/wx/doc/gen/file_dialog_custom_control.rb +0 -165
  255. data/lib/wx/doc/gen/file_dialog_customize_hook.rb +0 -158
  256. data/lib/wx/doc/gen/file_dir_picker_event.rb +0 -100
  257. data/lib/wx/doc/gen/file_picker_ctrl.rb +0 -132
  258. data/lib/wx/doc/gen/file_system.rb +0 -232
  259. data/lib/wx/doc/gen/find_dialog_event.rb +0 -126
  260. data/lib/wx/doc/gen/find_replace_data.rb +0 -60
  261. data/lib/wx/doc/gen/find_replace_dialog.rb +0 -58
  262. data/lib/wx/doc/gen/flex_grid_sizer.rb +0 -199
  263. data/lib/wx/doc/gen/font.rb +0 -1379
  264. data/lib/wx/doc/gen/font_data.rb +0 -151
  265. data/lib/wx/doc/gen/font_dialog.rb +0 -88
  266. data/lib/wx/doc/gen/font_picker_ctrl.rb +0 -143
  267. data/lib/wx/doc/gen/font_picker_event.rb +0 -65
  268. data/lib/wx/doc/gen/frame.rb +0 -352
  269. data/lib/wx/doc/gen/fs_file.rb +0 -337
  270. data/lib/wx/doc/gen/functions.rb +0 -10
  271. data/lib/wx/doc/gen/gauge.rb +0 -157
  272. data/lib/wx/doc/gen/gb_sizer_item.rb +0 -68
  273. data/lib/wx/doc/gen/gcdc.rb +0 -46
  274. data/lib/wx/doc/gen/gdi_common.rb +0 -1271
  275. data/lib/wx/doc/gen/gdi_object.rb +0 -31
  276. data/lib/wx/doc/gen/generic_about_dialog.rb +0 -140
  277. data/lib/wx/doc/gen/generic_dir_ctrl.rb +0 -223
  278. data/lib/wx/doc/gen/geometry.rb +0 -661
  279. data/lib/wx/doc/gen/graphics_context.rb +0 -1184
  280. data/lib/wx/doc/gen/graphics_object.rb +0 -750
  281. data/lib/wx/doc/gen/grid/event_list.rb +0 -191
  282. data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +0 -40
  283. data/lib/wx/doc/gen/grid/grid_cell_attr.rb +0 -280
  284. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +0 -35
  285. data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +0 -37
  286. data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +0 -49
  287. data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +0 -35
  288. data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +0 -46
  289. data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +0 -38
  290. data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +0 -45
  291. data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +0 -40
  292. data/lib/wx/doc/gen/grid/grid_cell_editor.rb +0 -197
  293. data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +0 -39
  294. data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +0 -44
  295. data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +0 -45
  296. data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +0 -79
  297. data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +0 -46
  298. data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +0 -35
  299. data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +0 -108
  300. data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +0 -35
  301. data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +0 -49
  302. data/lib/wx/doc/gen/grid/grid_ctrl.rb +0 -3002
  303. data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +0 -95
  304. data/lib/wx/doc/gen/grid/grid_event.rb +0 -129
  305. data/lib/wx/doc/gen/grid/grid_range_select_event.rb +0 -104
  306. data/lib/wx/doc/gen/grid/grid_size_event.rb +0 -85
  307. data/lib/wx/doc/gen/grid/grid_string_table.rb +0 -142
  308. data/lib/wx/doc/gen/grid/grid_table_base.rb +0 -317
  309. data/lib/wx/doc/gen/grid/grid_table_message.rb +0 -81
  310. data/lib/wx/doc/gen/grid_bag_sizer.rb +0 -323
  311. data/lib/wx/doc/gen/grid_sizer.rb +0 -195
  312. data/lib/wx/doc/gen/gui_event_loop.rb +0 -159
  313. data/lib/wx/doc/gen/h_scrolled_window.rb +0 -562
  314. data/lib/wx/doc/gen/header_ctrl.rb +0 -880
  315. data/lib/wx/doc/gen/header_ctrl_event.rb +0 -133
  316. data/lib/wx/doc/gen/help_controller.rb +0 -195
  317. data/lib/wx/doc/gen/help_provider.rb +0 -98
  318. data/lib/wx/doc/gen/html/event_list.rb +0 -38
  319. data/lib/wx/doc/gen/html/html_cell.rb +0 -536
  320. data/lib/wx/doc/gen/html/html_cell_event.rb +0 -69
  321. data/lib/wx/doc/gen/html/html_data_object.rb +0 -42
  322. data/lib/wx/doc/gen/html/html_easy_printing.rb +0 -203
  323. data/lib/wx/doc/gen/html/html_help_controller.rb +0 -340
  324. data/lib/wx/doc/gen/html/html_help_data.rb +0 -159
  325. data/lib/wx/doc/gen/html/html_help_window.rb +0 -258
  326. data/lib/wx/doc/gen/html/html_link_event.rb +0 -41
  327. data/lib/wx/doc/gen/html/html_list_box.rb +0 -346
  328. data/lib/wx/doc/gen/html/html_printout.rb +0 -109
  329. data/lib/wx/doc/gen/html/html_window.rb +0 -461
  330. data/lib/wx/doc/gen/hyperlink_ctrl.rb +0 -311
  331. data/lib/wx/doc/gen/hyperlink_event.rb +0 -44
  332. data/lib/wx/doc/gen/icon.rb +0 -267
  333. data/lib/wx/doc/gen/icon_location.rb +0 -40
  334. data/lib/wx/doc/gen/image.rb +0 -1371
  335. data/lib/wx/doc/gen/image_list.rb +0 -168
  336. data/lib/wx/doc/gen/info_bar.rb +0 -195
  337. data/lib/wx/doc/gen/keyboard_state.rb +0 -140
  338. data/lib/wx/doc/gen/list_box.rb +0 -304
  339. data/lib/wx/doc/gen/list_ctrl.rb +0 -1774
  340. data/lib/wx/doc/gen/list_event.rb +0 -208
  341. data/lib/wx/doc/gen/listbook.rb +0 -116
  342. data/lib/wx/doc/gen/locale.rb +0 -4293
  343. data/lib/wx/doc/gen/log.rb +0 -603
  344. data/lib/wx/doc/gen/mdi_client_window.rb +0 -47
  345. data/lib/wx/doc/gen/mdi_frame.rb +0 -324
  346. data/lib/wx/doc/gen/media_ctrl.rb +0 -269
  347. data/lib/wx/doc/gen/media_event.rb +0 -117
  348. data/lib/wx/doc/gen/memory_dc.rb +0 -174
  349. data/lib/wx/doc/gen/menu.rb +0 -509
  350. data/lib/wx/doc/gen/menu_bar.rb +0 -287
  351. data/lib/wx/doc/gen/menu_item.rb +0 -362
  352. data/lib/wx/doc/gen/message_dialog.rb +0 -238
  353. data/lib/wx/doc/gen/mini_frame.rb +0 -108
  354. data/lib/wx/doc/gen/mirror_dc.rb +0 -22
  355. data/lib/wx/doc/gen/mouse_state.rb +0 -150
  356. data/lib/wx/doc/gen/multi_choice_dialog.rb +0 -80
  357. data/lib/wx/doc/gen/non_owned_window.rb +0 -49
  358. data/lib/wx/doc/gen/notebook.rb +0 -278
  359. data/lib/wx/doc/gen/num_validator.rb +0 -37
  360. data/lib/wx/doc/gen/number_entry_dialog.rb +0 -93
  361. data/lib/wx/doc/gen/object.rb +0 -59
  362. data/lib/wx/doc/gen/owner_drawn_combo_box.rb +0 -395
  363. data/lib/wx/doc/gen/paint_dc.rb +0 -27
  364. data/lib/wx/doc/gen/palette.rb +0 -92
  365. data/lib/wx/doc/gen/panel.rb +0 -127
  366. data/lib/wx/doc/gen/pen.rb +0 -511
  367. data/lib/wx/doc/gen/persistence_manager.rb +0 -135
  368. data/lib/wx/doc/gen/persistent_object.rb +0 -52
  369. data/lib/wx/doc/gen/persistent_window.rb +0 -241
  370. data/lib/wx/doc/gen/pg/event_list.rb +0 -106
  371. data/lib/wx/doc/gen/pg/numeric_property_validator.rb +0 -54
  372. data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +0 -292
  373. data/lib/wx/doc/gen/pg/pg_cell.rb +0 -177
  374. data/lib/wx/doc/gen/pg/pg_editor.rb +0 -721
  375. data/lib/wx/doc/gen/pg/pg_multi_button.rb +0 -152
  376. data/lib/wx/doc/gen/pg/pg_properties.rb +0 -2829
  377. data/lib/wx/doc/gen/pg/pg_property.rb +0 -2078
  378. data/lib/wx/doc/gen/pg/pg_validation_info.rb +0 -344
  379. data/lib/wx/doc/gen/pg/property_grid.rb +0 -740
  380. data/lib/wx/doc/gen/pg/property_grid_event.rb +0 -184
  381. data/lib/wx/doc/gen/pg/property_grid_interface.rb +0 -1098
  382. data/lib/wx/doc/gen/pg/property_grid_manager.rb +0 -415
  383. data/lib/wx/doc/gen/pg/property_grid_page.rb +0 -354
  384. data/lib/wx/doc/gen/pg/property_grid_page_state.rb +0 -165
  385. data/lib/wx/doc/gen/picker_base.rb +0 -152
  386. data/lib/wx/doc/gen/platform_info.rb +0 -622
  387. data/lib/wx/doc/gen/popup_window.rb +0 -107
  388. data/lib/wx/doc/gen/progress_dialog.rb +0 -100
  389. data/lib/wx/doc/gen/property_sheet_dialog.rb +0 -216
  390. data/lib/wx/doc/gen/prt/event_list.rb +0 -17
  391. data/lib/wx/doc/gen/prt/page_setup_dialog.rb +0 -44
  392. data/lib/wx/doc/gen/prt/post_script_dc.rb +0 -30
  393. data/lib/wx/doc/gen/prt/preview_frame.rb +0 -78
  394. data/lib/wx/doc/gen/prt/print_abort_dialog.rb +0 -151
  395. data/lib/wx/doc/gen/prt/print_data.rb +0 -804
  396. data/lib/wx/doc/gen/prt/print_dialog.rb +0 -55
  397. data/lib/wx/doc/gen/prt/printer.rb +0 -518
  398. data/lib/wx/doc/gen/prt/printer_dc.rb +0 -37
  399. data/lib/wx/doc/gen/query_layout_info_event.rb +0 -106
  400. data/lib/wx/doc/gen/radio_box.rb +0 -306
  401. data/lib/wx/doc/gen/radio_button.rb +0 -159
  402. data/lib/wx/doc/gen/rbn/event_list.rb +0 -136
  403. data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +0 -1132
  404. data/lib/wx/doc/gen/rbn/ribbon_bar.rb +0 -308
  405. data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +0 -45
  406. data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +0 -458
  407. data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +0 -63
  408. data/lib/wx/doc/gen/rbn/ribbon_control.rb +0 -143
  409. data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +0 -229
  410. data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +0 -55
  411. data/lib/wx/doc/gen/rbn/ribbon_page.rb +0 -174
  412. data/lib/wx/doc/gen/rbn/ribbon_panel.rb +0 -270
  413. data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +0 -45
  414. data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +0 -360
  415. data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +0 -42
  416. data/lib/wx/doc/gen/rearrange_ctrl.rb +0 -78
  417. data/lib/wx/doc/gen/rearrange_list.rb +0 -123
  418. data/lib/wx/doc/gen/region.rb +0 -380
  419. data/lib/wx/doc/gen/region_iterator.rb +0 -76
  420. data/lib/wx/doc/gen/rich_tool_tip.rb +0 -154
  421. data/lib/wx/doc/gen/rtc/event_list.rb +0 -125
  422. data/lib/wx/doc/gen/rtc/rich_text_box.rb +0 -445
  423. data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +0 -1188
  424. data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +0 -41
  425. data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +0 -538
  426. data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +0 -2103
  427. data/lib/wx/doc/gen/rtc/rich_text_event.rb +0 -173
  428. data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +0 -181
  429. data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +0 -319
  430. data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +0 -193
  431. data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +0 -102
  432. data/lib/wx/doc/gen/rtc/rich_text_image.rb +0 -337
  433. data/lib/wx/doc/gen/rtc/rich_text_object.rb +0 -2922
  434. data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +0 -1240
  435. data/lib/wx/doc/gen/rtc/rich_text_printing.rb +0 -258
  436. data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +0 -344
  437. data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +0 -227
  438. data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +0 -59
  439. data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +0 -169
  440. data/lib/wx/doc/gen/sash_event.rb +0 -147
  441. data/lib/wx/doc/gen/sash_layout_window.rb +0 -232
  442. data/lib/wx/doc/gen/sash_window.rb +0 -171
  443. data/lib/wx/doc/gen/scaled_dc.rb +0 -10
  444. data/lib/wx/doc/gen/screen_dc.rb +0 -30
  445. data/lib/wx/doc/gen/scroll_bar.rb +0 -204
  446. data/lib/wx/doc/gen/scrolled_canvas.rb +0 -410
  447. data/lib/wx/doc/gen/scrolled_control.rb +0 -410
  448. data/lib/wx/doc/gen/scrolled_window.rb +0 -430
  449. data/lib/wx/doc/gen/search_ctrl.rb +0 -159
  450. data/lib/wx/doc/gen/secret_store.rb +0 -116
  451. data/lib/wx/doc/gen/simplebook.rb +0 -110
  452. data/lib/wx/doc/gen/single_choice_dialog.rb +0 -89
  453. data/lib/wx/doc/gen/sizer.rb +0 -945
  454. data/lib/wx/doc/gen/sizer_item.rb +0 -244
  455. data/lib/wx/doc/gen/slider.rb +0 -342
  456. data/lib/wx/doc/gen/spin_button.rb +0 -157
  457. data/lib/wx/doc/gen/spin_ctrl.rb +0 -231
  458. data/lib/wx/doc/gen/spin_ctrl_double.rb +0 -192
  459. data/lib/wx/doc/gen/spin_double_event.rb +0 -55
  460. data/lib/wx/doc/gen/spin_event.rb +0 -51
  461. data/lib/wx/doc/gen/splash_screen.rb +0 -113
  462. data/lib/wx/doc/gen/splitter_event.rb +0 -99
  463. data/lib/wx/doc/gen/splitter_window.rb +0 -498
  464. data/lib/wx/doc/gen/static_bitmap.rb +0 -256
  465. data/lib/wx/doc/gen/static_box.rb +0 -180
  466. data/lib/wx/doc/gen/static_box_sizer.rb +0 -85
  467. data/lib/wx/doc/gen/static_line.rb +0 -83
  468. data/lib/wx/doc/gen/static_text.rb +0 -127
  469. data/lib/wx/doc/gen/status_bar.rb +0 -290
  470. data/lib/wx/doc/gen/stc/event_list.rb +0 -221
  471. data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +0 -4474
  472. data/lib/wx/doc/gen/stc/styled_text_event.rb +0 -8762
  473. data/lib/wx/doc/gen/std_dialog_button_sizer.rb +0 -129
  474. data/lib/wx/doc/gen/svg_file_dc.rb +0 -164
  475. data/lib/wx/doc/gen/system_options.rb +0 -129
  476. data/lib/wx/doc/gen/system_settings.rb +0 -507
  477. data/lib/wx/doc/gen/task_bar_icon.rb +0 -127
  478. data/lib/wx/doc/gen/task_bar_icon_event.rb +0 -88
  479. data/lib/wx/doc/gen/text_attr.rb +0 -756
  480. data/lib/wx/doc/gen/text_ctrl.rb +0 -1033
  481. data/lib/wx/doc/gen/text_entry.rb +0 -441
  482. data/lib/wx/doc/gen/text_entry_dialog.rb +0 -220
  483. data/lib/wx/doc/gen/text_validator.rb +0 -245
  484. data/lib/wx/doc/gen/time_picker_ctrl.rb +0 -128
  485. data/lib/wx/doc/gen/timer.rb +0 -119
  486. data/lib/wx/doc/gen/timer_event.rb +0 -68
  487. data/lib/wx/doc/gen/tip_provider.rb +0 -63
  488. data/lib/wx/doc/gen/tip_window.rb +0 -51
  489. data/lib/wx/doc/gen/toggle_button.rb +0 -182
  490. data/lib/wx/doc/gen/tool_bar.rb +0 -890
  491. data/lib/wx/doc/gen/tool_tip.rb +0 -86
  492. data/lib/wx/doc/gen/toolbook.rb +0 -118
  493. data/lib/wx/doc/gen/top_level_window.rb +0 -497
  494. data/lib/wx/doc/gen/tree_ctrl.rb +0 -1052
  495. data/lib/wx/doc/gen/tree_event.rb +0 -127
  496. data/lib/wx/doc/gen/treebook.rb +0 -180
  497. data/lib/wx/doc/gen/ui_action_simulator.rb +0 -109
  498. data/lib/wx/doc/gen/utils.rb +0 -273
  499. data/lib/wx/doc/gen/v_list_box.rb +0 -272
  500. data/lib/wx/doc/gen/v_scrolled_canvas.rb +0 -195
  501. data/lib/wx/doc/gen/v_scrolled_window.rb +0 -191
  502. data/lib/wx/doc/gen/validator.rb +0 -68
  503. data/lib/wx/doc/gen/variant.rb +0 -294
  504. data/lib/wx/doc/gen/window.rb +0 -2917
  505. data/lib/wx/doc/gen/window_dc.rb +0 -38
  506. data/lib/wx/doc/gen/window_disabler.rb +0 -30
  507. data/lib/wx/doc/gen/with_images.rb +0 -84
  508. data/lib/wx/doc/gen/wizard.rb +0 -257
  509. data/lib/wx/doc/gen/wizard_event.rb +0 -113
  510. data/lib/wx/doc/gen/wizard_page.rb +0 -65
  511. data/lib/wx/doc/gen/wizard_page_simple.rb +0 -88
  512. data/lib/wx/doc/gen/wrap_sizer.rb +0 -79
  513. data/lib/wx/doc/gen/xml_node.rb +0 -316
  514. data/lib/wx/doc/gen/xml_resource.rb +0 -320
  515. data/lib/wx/grid/events/evt_list.rb +0 -166
  516. data/lib/wx/html/events/evt_list.rb +0 -27
  517. data/lib/wx/pg/events/evt_list.rb +0 -73
  518. data/lib/wx/rbn/events/evt_list.rb +0 -102
  519. data/lib/wx/rtc/events/evt_list.rb +0 -98
  520. data/lib/wx/rtc/ext/rich_text_ctrl.rb +0 -24
  521. data/lib/wx/stc/events/evt_list.rb +0 -178
  522. data/samples/art/wxruby-512x512.png +0 -0
@@ -1,631 +0,0 @@
1
- # :stopdoc:
2
- # This file is automatically generated by the WXRuby3 documentation
3
- # generator. Do not alter this file.
4
- # :startdoc:
5
-
6
-
7
- module Wx
8
-
9
- module AUI
10
-
11
- # {Wx::AUI::AuiNotebook} is part of the {Wx::AUI} class framework, which represents a notebook control, managing multiple windows with associated tabs.
12
- #
13
- # See also wxAUI Overview.
14
- # {Wx::AUI::AuiNotebook} is a notebook control which implements many features common in applications with dockable panes. Specifically, {Wx::AUI::AuiNotebook} implements functionality which allows the user to rearrange tab order via drag-and-drop, split the tab window into many different splitter configurations, and toggle through different themes to customize the control's look and feel.
15
- # The default theme since wxWidgets 3.3.0 is {Wx::AUI::AuiFlatTabArt}. If you would prefer to use the theme which used to be default in the previous versions, you can call {Wx::AUI::AuiNotebook#set_art_provider} with {Wx::AUI::AuiNativeTabArt} as the argument. Notice that {Wx::AUI::AuiNativeTabArt} may be not compatible with {Wx::AUI::AuiNotebookOption::AUI_NB_BOTTOM}, {Wx::AUI::AuiNotebookOption::AUI_NB_PIN_ON_ACTIVE_TAB} and {Wx::AUI::AuiNotebookOption::AUI_NB_UNPIN_ON_ALL_PINNED} styles, so using it is not recommended if you use any of them.
16
- #
17
- # ## Multiple Tab Controls
18
- # Initially, {Wx::AUI::AuiNotebook} creates the main tab control, which can be retrieved using {Wx::AUI::AuiNotebook#get_main_tab_ctrl}, and uses it for all tabs. However when {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_SPLIT} style is used (which is the case by default), the user will be able to drag pages out of it and create new tab controls, that can then themselves be dragged to be docked in a different place inside the notebook. Also, whether {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_SPLIT} is specified or not, {Wx::AUI::AuiNotebook#split} function can always be used to create new tab controls programmatically.
19
- # When using multiple tab controls, exactly one of them is active at any time. This tab control can be retrieved by calling {Wx::AUI::AuiNotebook#get_active_tab_ctrl} and is always used for appending or inserting new pages. You can also use {Wx::AUI::AuiNotebook#get_all_tab_ctrls} to get all existing tab controls.
20
- #
21
- # ## Pages Indices and Positions
22
- # Each notebook page has its logical index, which is determined by the order in which the pages are added, i.e. the first page added has index 0, the second one has index 1, and so on, but also has its physical display position, which corresponds to the position at which it is displayed. Initially the indices and positions are the same for all pages, but they may become different if the user reorders the pages by dragging them around (which is possible when {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_MOVE} style, included in the default notebook flags, is on). Also note that it's possible to have multiple pages with the same physical position, in different tab controls (see the previous section), e.g. each first page in each tab control has physical position 0, but there is only one page with logical index 0.
23
- # All functions taking a page index parameter, such as {Wx::AUI::AuiNotebook#set_page_text}, work with logical indices. Similarly, functions returning a page index, such as {Wx::AUI::AuiNotebook#get_selection}, also always return logical indices. To get the physical position of a single page, use {Wx::AUI::AuiNotebook#get_page_position} and to get all pages in some tab control in their physical, display order {Wx::AUI::AuiNotebook#get_pages_in_display_order} can be used.
24
- #
25
- # ## Pages Layout
26
- # When the user can change the notebook layout interactively, i.e. when {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_MOVE} and/or {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_SPLIT} styles are used, it can be useful to remember the current layout on program exit and restore it when it is restarted. This can be done by saving, and reloading, the layout of the entire {Wx::AUI::AuiManager} containing this notebook using {Wx::AUI::AuiManager#save_layout} and {Wx::AUI::AuiManager#load_layout}, but it can also be done just for the given notebook, without affecting the other panes, using {Wx::AUI::AuiNotebook#save_layout} and {Wx::AUI::AuiNotebook#load_layout} functions of this class.
27
- # Using them is similar to using {Wx::AUI::AuiManager} functions, except they only require implementing {Wx::AUI::AuiBookSerializer} or {Wx::AUI::AuiBookDeserializer} interface, which is a subset of the full {Wx::AUI::AuiSerializer} or {Wx::AUI::AuiDeserializer}. The page_samples_aui shows how to use them.
28
- # ### Styles
29
- #
30
- # This class supports the following styles:
31
- #
32
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_DEFAULT_STYLE}: Defined as {Wx::AUI::AuiNotebookOption::AUI_NB_TOP} | {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_SPLIT} | {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_MOVE} | {Wx::AUI::AuiNotebookOption::AUI_NB_SCROLL_BUTTONS} | {Wx::AUI::AuiNotebookOption::AUI_NB_CLOSE_ON_ACTIVE_TAB} | {Wx::AUI::AuiNotebookOption::AUI_NB_MIDDLE_CLICK_CLOSE}.
33
- #
34
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_SPLIT}: Allows the tab control to be split by dragging a tab.
35
- #
36
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_MOVE}: Allows a tab to be moved horizontally by dragging.
37
- #
38
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_EXTERNAL_MOVE}: Allows a tab to be moved to another tab control.
39
- #
40
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_FIXED_WIDTH}: With this style, all tabs have the same width.
41
- #
42
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_SCROLL_BUTTONS}: With this style, left and right scroll buttons are displayed. Note that this style is ignored if {Wx::AUI::AuiNotebookOption::AUI_NB_MULTILINE} is used.
43
- #
44
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_WINDOWLIST_BUTTON}: With this style, a drop-down list of windows is available.
45
- #
46
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_CLOSE_BUTTON}: With this style, a close button is available on the tab bar.
47
- #
48
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_CLOSE_ON_ACTIVE_TAB}: With this style, the close button is visible on the active tab.
49
- #
50
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_CLOSE_ON_ALL_TABS}: With this style, the close button is visible on all tabs.
51
- #
52
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_MIDDLE_CLICK_CLOSE}: With this style, middle click on a tab closes the tab.
53
- #
54
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_TOP}: With this style, tabs are drawn along the top of the notebook.
55
- #
56
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_BOTTOM}: With this style, tabs are drawn along the bottom of the notebook.
57
- #
58
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_MULTILINE}: If this style is specified and all the tabs don't fit in the visible area, multiple rows of tabs are used instead of adding a button allowing to scroll them. This style is only available in wxWidgets 3.3.0 or later.
59
- #
60
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_PIN_ON_ACTIVE_TAB}: If this style is specified, the active tab shows either a "pin" icon allowing to pin it (i.e. change its kind to {Wx::AUI::AuiTabKind::Pinned}) if it's not currently pinned or an "unpin" icon to change the kind back to normal. This style is not included in the default notebook style and has to be explicitly specified for the user to be able to pin the tabs interactively. It is available in wxWidgets 3.3.0 or later.
61
- #
62
- # - {Wx::AUI::AuiNotebookOption::AUI_NB_UNPIN_ON_ALL_PINNED}: If this style is specified, "unpin" button is shown on all currently pinned tabs, allowing the user to unpin them, i.e. make them normal again. This style can be combined with {Wx::AUI::AuiNotebookOption::AUI_NB_PIN_ON_ACTIVE_TAB} or used on its own. It is available in wxWidgets 3.3.0 or later.
63
- #
64
- # ### Events emitted by this class
65
- #
66
- # The following event-handler methods redirect the events to member method or handler blocks for {Wx::AUI::AuiNotebookEvent} events.
67
- # Event handler methods for events emitted by this class:
68
- #
69
- # - {Wx::EvtHandler#evt_auinotebook_page_close}(id, meth = nil, &block): A page is about to be closed. Processes a {Wx::AUI::EVT_AUINOTEBOOK_PAGE_CLOSE} event.
70
- #
71
- # - {Wx::EvtHandler#evt_auinotebook_page_closed}(winid, meth = nil, &block): A page has been closed. Processes a {Wx::AUI::EVT_AUINOTEBOOK_PAGE_CLOSED} event.
72
- #
73
- # - {Wx::EvtHandler#evt_auinotebook_page_changed}(id, meth = nil, &block): The page selection was changed. Processes a {Wx::AUI::EVT_AUINOTEBOOK_PAGE_CHANGED} event.
74
- #
75
- # - {Wx::EvtHandler#evt_auinotebook_page_changing}(id, meth = nil, &block): The page selection is about to be changed. Processes a {Wx::AUI::EVT_AUINOTEBOOK_PAGE_CHANGING} event. This event can be vetoed.
76
- #
77
- # - {Wx::EvtHandler#evt_auinotebook_button}(id, meth = nil, &block): The window list button has been pressed. Processes a {Wx::AUI::EVT_AUINOTEBOOK_BUTTON} event.
78
- #
79
- # - {Wx::EvtHandler#evt_auinotebook_begin_drag}(id, meth = nil, &block): Dragging is about to begin. Processes a {Wx::AUI::EVT_AUINOTEBOOK_BEGIN_DRAG} event.
80
- #
81
- # - {Wx::EvtHandler#evt_auinotebook_end_drag}(id, meth = nil, &block): Dragging has ended. Processes a {Wx::AUI::EVT_AUINOTEBOOK_END_DRAG} event.
82
- #
83
- # - {Wx::EvtHandler#evt_auinotebook_drag_motion}(id, meth = nil, &block): Emitted during a drag and drop operation. Processes a {Wx::AUI::EVT_AUINOTEBOOK_DRAG_MOTION} event.
84
- #
85
- # - {Wx::EvtHandler#evt_auinotebook_allow_dnd}(id, meth = nil, &block): Whether to allow a tab to be dropped. Processes a {Wx::AUI::EVT_AUINOTEBOOK_ALLOW_DND} event. This event must be specially allowed.
86
- #
87
- # - {Wx::EvtHandler#evt_auinotebook_drag_done}(winid, meth = nil, &block): Notify that the tab has been dragged. Processes a {Wx::AUI::EVT_AUINOTEBOOK_DRAG_DONE} event.
88
- #
89
- # - {Wx::EvtHandler#evt_auinotebook_tab_middle_down}(winid, meth = nil, &block): The middle mouse button is pressed on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN} event.
90
- #
91
- # - {Wx::EvtHandler#evt_auinotebook_tab_middle_up}(winid, meth = nil, &block): The middle mouse button is released on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_MIDDLE_UP} event.
92
- #
93
- # - {Wx::EvtHandler#evt_auinotebook_tab_right_down}(winid, meth = nil, &block): The right mouse button is pressed on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_RIGHT_DOWN} event.
94
- #
95
- # - {Wx::EvtHandler#evt_auinotebook_tab_right_up}(winid, meth = nil, &block): The right mouse button is released on a tab. Processes a {Wx::AUI::EVT_AUINOTEBOOK_TAB_RIGHT_UP} event.
96
- #
97
- # - {Wx::EvtHandler#evt_auinotebook_bg_dclick}(winid, meth = nil, &block): Double clicked on the tabs background area. Processes a {Wx::AUI::EVT_AUINOTEBOOK_BG_DCLICK} event.
98
- #
99
- # Please see the note in {Wx::AUI::AuiNotebookEvent} documentation about handling these events.
100
- #
101
- # Category: Window Docking (wxAUI)
102
- #
103
- # @wxrb_require USE_AUI
104
- class AuiNotebook < BookCtrlBase
105
-
106
- # @overload initialize()
107
- # Default ctor.
108
- # @return [Wx::AUI::AuiNotebook]
109
- # @overload initialize(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::AUI::AuiNotebookOption::AUI_NB_DEFAULT_STYLE)
110
- # Constructor.
111
- #
112
- # Creates a {Wx::AuiNotebok} control.
113
- # @param parent [Wx::Window]
114
- # @param id [Integer]
115
- # @param pos [Array(Integer, Integer), Wx::Point]
116
- # @param size [Array(Integer, Integer), Wx::Size]
117
- # @param style [Integer]
118
- # @return [Wx::AUI::AuiNotebook]
119
- # @overload initialize(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::AUI::AuiNotebookOption::AUI_NB_DEFAULT_STYLE, &block)
120
- # Constructor.
121
- #
122
- # Creates a {Wx::AuiNotebok} control.
123
- # @param parent [Wx::Window]
124
- # @param id [Integer]
125
- # @param pos [Array(Integer, Integer), Wx::Point]
126
- # @param size [Array(Integer, Integer), Wx::Size]
127
- # @param style [Integer]
128
- # @yieldparam [Wx::AUI::AuiNotebook] win new instance
129
- # @return [Wx::AUI::AuiNotebook]
130
- def initialize(*args) end
131
-
132
- # @overload add_page(page, caption, select=false, bitmap=(Wx::BitmapBundle.new()))
133
- # Adds a page.
134
- #
135
- # If the select parameter is true, calling this will generate a page change event.
136
- # @param page [Wx::Window]
137
- # @param caption [String]
138
- # @param select [Boolean]
139
- # @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
140
- # @return [Boolean]
141
- # @overload add_page(page, text, select, imageId)
142
- # Adds a new page.
143
- #
144
- # The page must have the book control itself as the parent and must not have been added to this control previously.
145
- # The call to this function may generate the page changing events.
146
- #
147
- # true if successful, false otherwise.
148
- #
149
- # <div class="wxrb-remark">
150
- # <b>Remark:</b>
151
- # <p>Do not delete the page, it will be deleted by the book control.
152
- # </p>
153
- # </div>
154
- # @see Wx::AUI::AuiNotebook#insert_page
155
- # @param page [Wx::Window] Specifies the new page.
156
- # @param text [String] Specifies the text for the new page.
157
- # @param select [Boolean] Specifies whether the page should be selected.
158
- # @param imageId [Integer] Specifies the optional image index for the new page.
159
- # @return [Boolean]
160
- def add_page(*args) end
161
-
162
- # Sets the selection to the next or previous page in the same tab control.
163
- #
164
- # This function sets selection to the next (if forward is true) or previous (otherwise) page after or before the currently selected one in but without leaving the current tab control.
165
- # @param forward [Boolean]
166
- # @return [void]
167
- def advance_selection(forward=true) end
168
-
169
- # Changes the selection for the given page, returning the previous selection.
170
- #
171
- # This function behaves as {Wx::AUI::AuiNotebook#set_selection} but does not generate the page changing events.
172
- # See User Generated Events vs Programmatically Generated Events for more information.
173
- # @param n [Integer]
174
- # @return [Integer]
175
- def change_selection(n) end
176
-
177
- # Creates the notebook window.
178
- # @param parent [Wx::Window]
179
- # @param id [Integer]
180
- # @param pos [Array(Integer, Integer), Wx::Point]
181
- # @param size [Array(Integer, Integer), Wx::Size]
182
- # @param style [Integer]
183
- # @return [Boolean]
184
- def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0) end
185
-
186
- # Deletes all pages.
187
- # @return [Boolean]
188
- def delete_all_pages; end
189
-
190
- # Deletes a page at the given index.
191
- #
192
- # Calling this method will generate a page change event.
193
- # @param page [Integer]
194
- # @return [Boolean]
195
- def delete_page(page) end
196
-
197
- # Returns the associated art provider.
198
- # @return [Wx::AUI::AuiTabArt]
199
- def get_art_provider; end
200
- alias_method :art_provider, :get_art_provider
201
-
202
- # Returns the currently selected page or nil.
203
- # @return [Wx::Window]
204
- def get_current_page; end
205
- alias_method :current_page, :get_current_page
206
-
207
- # Returns the desired height of the notebook for the given page height.
208
- #
209
- # Use this to fit the notebook to a given page size.
210
- # @param pageHeight [Integer]
211
- # @return [Integer]
212
- def get_height_for_page_height(pageHeight) end
213
- alias_method :height_for_page_height, :get_height_for_page_height
214
-
215
- # Returns the page specified by the given index.
216
- # @param page_idx [Integer]
217
- # @return [Wx::Window]
218
- def get_page(page_idx) end
219
- alias_method :page, :get_page
220
-
221
- # Returns the tab bitmap for the page.
222
- # @param page [Integer]
223
- # @return [Wx::Bitmap]
224
- def get_page_bitmap(page) end
225
- alias_method :page_bitmap, :get_page_bitmap
226
-
227
- # Returns the number of pages in the notebook.
228
- # @return [Integer]
229
- def get_page_count; end
230
- alias_method :page_count, :get_page_count
231
-
232
- # Returns the page index for the specified window.
233
- #
234
- # If the window is not found in the notebook, {Wx::NOT_FOUND} is returned.
235
- # This is AUI-specific equivalent to Wx::BookCtrl#find_page and it is recommended to use that generic method instead of this one.
236
- # @param page_wnd [Wx::Window]
237
- # @return [Integer]
238
- def get_page_index(page_wnd) end
239
- alias_method :page_index, :get_page_index
240
-
241
- # Returns the tab kind for the page.
242
- #
243
- # See {Wx::AUI::AuiNotebook#set_page_kind}.
244
- # @param pageIdx [Integer]
245
- # @return [Wx::AuiTabKind]
246
- def get_page_kind(pageIdx) end
247
- alias_method :page_kind, :get_page_kind
248
-
249
- # Returns the position of the page in the notebook.
250
- #
251
- # For example, to determine if one page is located immediately next to another one, the following code could be used:
252
- #
253
- # ```
254
- # wxAuiNotebookPosition pos1 = notebook->GetPagePosition(page1);
255
- # wxAuiNotebookPosition pos2 = notebook->GetPagePosition(page2);
256
- # if ( pos1.tabctrl == pos2.tabctrl && pos1.page + 1 == pos2.page )
257
- # {
258
- # // page1 is immediately before page2
259
- # }
260
- # ```
261
- #
262
- # Note that it would be wrong to just check that <code>page1 + 1 == page2</code> here because the logical page index may not correspond to their visual position if they have been reordered by the user in a control with {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_MOVE} style.
263
- # @param page [Integer]
264
- # @return [Wx::AUI::AuiNotebookPosition]
265
- def get_page_position(page) end
266
- alias_method :page_position, :get_page_position
267
-
268
- # Returns indices of all pages in the given tab control.
269
- #
270
- # The pages are returned in the order they are displayed in the tab, which may be different from the default order if they were rearranged by the user.
271
- # The tabCtrl must be valid, see {Wx::AUI::AuiNotebook#get_active_tab_ctrl} and {Wx::AUI::AuiNotebook#get_all_tab_ctrls} for the functions that can be used to get the tab control to use.
272
- # The returned vector contains the logical page indices.
273
- # @param tabCtrl [Wx::AUI::AuiTabCtrl]
274
- # @return [Array<Integer>]
275
- def get_pages_in_display_order(tabCtrl) end
276
- alias_method :pages_in_display_order, :get_pages_in_display_order
277
-
278
- # Returns the tab label for the page.
279
- # @param page [Integer]
280
- # @return [String]
281
- def get_page_text(page) end
282
- alias_method :page_text, :get_page_text
283
-
284
- # Returns the tooltip for the tab label of the page.
285
- # @param pageIdx [Integer]
286
- # @return [String]
287
- def get_page_tool_tip(pageIdx) end
288
- alias_method :page_tool_tip, :get_page_tool_tip
289
-
290
- # Returns the currently selected page.
291
- # @return [Integer]
292
- def get_selection; end
293
- alias_method :selection, :get_selection
294
-
295
- # Returns the height of the tab control.
296
- # @return [Integer]
297
- def get_tab_ctrl_height; end
298
- alias_method :tab_ctrl_height, :get_tab_ctrl_height
299
-
300
- # @overload insert_page(index, page, text, select=false, bitmap=(Wx::BitmapBundle.new()))
301
- # {Wx::AUI::AuiNotebook#insert_page} is similar to AddPage, but allows the ability to specify the insert location.
302
- #
303
- # If the select parameter is true, calling this will generate a page change event.
304
- # Page index page_idx specifies the page before which the new page should be inserted. It may be equal to the current number of pages in the notebook, in which case this function is equivalent to {Wx::AUI::AuiNotebook#add_page}, but can't be strictly greater than it.
305
- # Note that if you want to insert the page at the specified physical position, e.g. at the beginning of the current tab control, you need to use {Wx::AUI::AuiNotebook#get_pages_in_display_order} to get the logical page index corresponding to the position 0 and then pass this index to this function.
306
- # Note that if the page with the given index is not in the currently active tab control, the new page will be added at the end of the active tab instead of being inserted into another tab control.
307
- #
308
- # true if successful, false otherwise.
309
- #
310
- # <div class="wxrb-remark">
311
- # <b>Remark:</b>
312
- # <p>Do not delete the page, it will be deleted by the book control.
313
- # </p>
314
- # </div>
315
- # @see Wx::AUI::AuiNotebook#add_page
316
- # @param index [Integer] Specifies the page before which the new page should be inserted.
317
- # @param page [Wx::Window] Specifies the new page.
318
- # @param text [String] Specifies the text for the new page.
319
- # @param select [Boolean] Specifies whether the page should be selected.
320
- # @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image] Specifies the optional bitmap to use for the new page.
321
- # @return [Boolean]
322
- # @overload insert_page(index, page, text, select, imageId)
323
- # This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
324
- # @param index [Integer]
325
- # @param page [Wx::Window]
326
- # @param text [String]
327
- # @param select [Boolean]
328
- # @param imageId [Integer]
329
- # @return [Boolean]
330
- def insert_page(*args) end
331
-
332
- # Load the previously saved layout of the notebook.
333
- #
334
- # This function is used to restore the layout previously saved by {Wx::AUI::AuiNotebook#save_layout}.
335
- # @see Wx::AUI::AuiManager#load_layout
336
- # @param name [String] Used as argument for {Wx::AUI::AuiBookDeserializer#load_notebook_tabs} call.
337
- # @param deserializer [Wx::AUI::AuiBookDeserializer] The object to use for restoring the layout.
338
- # @return [void]
339
- def load_layout(name, deserializer) end
340
-
341
- # Removes a page, without deleting the window pointer.
342
- # @param page [Integer]
343
- # @return [Boolean]
344
- def remove_page(page) end
345
-
346
- # Save the layout of the notebook using the provided serializer.
347
- #
348
- # The notebook layout includes the number and positions of all the tab controls as well as the pages contained in each of them and their order.
349
- # The serializer defines how exactly this information is saved: it can use any form of serialization, e.g. XML or JSON, to do it, with the only requirement being that {Wx::AUI::AuiNotebook#load_layout} should be able to restore it from the same name.
350
- # @see Wx::AUI::AuiManager#save_layout
351
- # @param name [String] Used as argument for {Wx::AUI::AuiBookSerializer#before_save_notebook} call.
352
- # @param serializer [Wx::AUI::AuiBookSerializer] The object to use for saving the layout.
353
- # @return [void]
354
- def save_layout(name, serializer) end
355
-
356
- # Sets the art provider to be used by the notebook.
357
- # @param art [Wx::AUI::AuiTabArt]
358
- # @return [void]
359
- def set_art_provider(art) end
360
- alias_method :art_provider=, :set_art_provider
361
-
362
- # Sets the font for drawing the tab labels, using a bold version of the font for selected tab labels.
363
- # @param font [Wx::Font,Wx::FontInfo]
364
- # @return [Boolean]
365
- def set_font(font) end
366
- alias_method :font=, :set_font
367
-
368
- # Sets the flags for the {Wx::AUI::AuiManager} used by {Wx::AUI::AuiNotebook}.
369
- #
370
- # Please note that it makes sense to use only some of {Wx::AUI::AuiManager} flags, documented in {Wx::AUI::AuiManagerOption}, with {Wx::AUI::AuiNotebook}, but the other ones are simply ignored, so it is always possible to reuse the same flags for the main {Wx::AUI::AuiManager} and the one used by the notebook.
371
- # Example of using this function to enable the Venetian blinds effect for the notebook:
372
- # ```
373
- # auiNotebook->SetManagerFlags(
374
- # wxAuiManager::GetManager()->GetFlags() | ~wxAUI_MGR_VENETIAN_BLINDS_HINT
375
- # );
376
- # ```
377
- # @see Wx::AUI::AuiManager#set_flags
378
- # @see Wx::AUI::AuiManagerOption
379
- # @param flags [Integer]
380
- # @return [void]
381
- def set_manager_flags(flags) end
382
- alias_method :manager_flags=, :set_manager_flags
383
-
384
- # Sets the font for measuring tab labels.
385
- # @param font [Wx::Font,Wx::FontInfo]
386
- # @return [void]
387
- def set_measuring_font(font) end
388
- alias_method :measuring_font=, :set_measuring_font
389
-
390
- # Sets the font for drawing unselected tab labels.
391
- # @param font [Wx::Font,Wx::FontInfo]
392
- # @return [void]
393
- def set_normal_font(font) end
394
- alias_method :normal_font=, :set_normal_font
395
-
396
- # Sets the bitmap for the page.
397
- #
398
- # To remove a bitmap from the tab caption, pass an empty {Wx::BitmapBundle}.
399
- # @param page [Integer]
400
- # @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
401
- # @return [Boolean]
402
- def set_page_bitmap(page, bitmap) end
403
-
404
- # Sets the image index for the given page.
405
- #
406
- # image is an index into the image list which was set with {Wx::AUI::AuiNotebook#set_image_list}.
407
- # @param n [Integer]
408
- # @param imageId [Integer]
409
- # @return [Boolean]
410
- def set_page_image(n, imageId) end
411
-
412
- # Set the tab kind.
413
- #
414
- # Can be used to pin or lock a tab.
415
- # Tabs are are grouped in 3 subsets (each of which can possibly be empty):
416
- #
417
- # - Shown first are locked tabs which are typically used for showing some different content from the normal (and pinned) tabs. These tabs are special, they're always shown and can't be closed nor moved, by dragging them, by the user.
418
- # - Next are pinned tabs: these tabs can be closed and, depending on whether {Wx::AUI::AuiNotebookOption::AUI_NB_PIN_ON_ACTIVE_TAB} and {Wx::AUI::AuiNotebookOption::AUI_NB_UNPIN_ON_ALL_PINNED} styles are specified, can also be unpinned (i.e. made normal) by the user. If {Wx::AUI::AuiNotebookOption::AUI_NB_TAB_MOVE} is specified, they can be moved by dragging them, however they are restricted to remain in the pinned tabs group, i.e. only the order of the pinned tabs can be changed.
419
- # - Finally, normal tabs are shown. These tabs can be closed and, depending on {Wx::AUI::AuiNotebookOption::AUI_NB_PIN_ON_ACTIVE_TAB} style, pinned by the user. They can also be moved by dragging them, but only inside the same group.
420
- #
421
- # true if the kind was changed, false if it didn't change, either because the page already was of the specified kind or because the preconditions were not satisfied, e.g. the page index was invalid.
422
- # @param pageIdx [Integer] The index of the page to change.
423
- # @param kind [Wx::AuiTabKind] The new kind for the page.
424
- # @return [Boolean]
425
- def set_page_kind(pageIdx, kind) end
426
-
427
- # Sets the tab label for the page.
428
- # @param page [Integer]
429
- # @param text [String]
430
- # @return [Boolean]
431
- def set_page_text(page, text) end
432
-
433
- # Sets the tooltip displayed when hovering over the tab label of the page.
434
- #
435
- # true if tooltip was updated, false if it failed, e.g. because the page index is invalid.
436
- # @param page [Integer]
437
- # @param text [String]
438
- # @return [Boolean]
439
- def set_page_tool_tip(page, text) end
440
-
441
- # Sets the font for drawing selected tab labels.
442
- # @param font [Wx::Font,Wx::FontInfo]
443
- # @return [void]
444
- def set_selected_font(font) end
445
- alias_method :selected_font=, :set_selected_font
446
-
447
- # Sets the page selection.
448
- #
449
- # Calling this method will generate a page change event.
450
- # @param new_page [Integer]
451
- # @return [Integer]
452
- def set_selection(new_page) end
453
- alias_method :selection=, :set_selection
454
-
455
- # Sets the tab height.
456
- #
457
- # By default, the tab control height is calculated by measuring the text height and bitmap sizes on the tab captions. Calling this method will override that calculation and set the tab control to the specified height parameter. A call to this method will override any call to {Wx::AUI::AuiNotebook#set_uniform_bitmap_size}.
458
- # Specifying -1 as the height will return the control to its default auto-sizing behaviour.
459
- # If the control uses {Wx::AUI::AuiNotebookOption::AUI_NB_MULTILINE} style, the height parameter specifies the height of a single row of tabs and not the combined height of all rows.
460
- # @param height [Integer]
461
- # @return [void]
462
- def set_tab_ctrl_height(height) end
463
- alias_method :tab_ctrl_height=, :set_tab_ctrl_height
464
-
465
- # Ensure that all tabs have the same height, even if some of them don't have bitmaps.
466
- #
467
- # Passing {Wx::DEFAULT_SIZE} as size undoes the effect of a previous call to this function and instructs the control to use dynamic tab height.
468
- # @param size [Array(Integer, Integer), Wx::Size]
469
- # @return [void]
470
- def set_uniform_bitmap_size(size) end
471
- alias_method :uniform_bitmap_size=, :set_uniform_bitmap_size
472
-
473
- # Split performs a split operation programmatically.
474
- #
475
- # The argument page indicates the page that will be split off. This page will also become the active page after the split.
476
- # The direction argument specifies where the pane should go, it should be one of the following: {Wx::Direction::TOP}, {Wx::Direction::BOTTOM}, {Wx::Direction::LEFT}, or {Wx::Direction::RIGHT}.
477
- # @see Wx::AUI::AuiNotebook#unsplit_all
478
- # @param page [Integer]
479
- # @param direction [Integer]
480
- # @return [void]
481
- def split(page, direction) end
482
-
483
- # Shows the window menu for the active tab control associated with this notebook, and returns true if a selection was made.
484
- # @return [Boolean]
485
- def show_window_menu; end
486
-
487
- # Remove all split tab controls, leaving only the single one.
488
- #
489
- # This is the opposite of {Wx::AUI::AuiNotebook#split} function and collects all the pages from all tab controls in the central tab control and removes the other ones.
490
- # If there are no other tab controls, this function doesn't do anything.
491
- # Note that calling {Wx::AUI::AuiNotebook#split} followed by {Wx::AUI::AuiNotebook#unsplit_all} does not preserve the page order, as all previously split pages are added at the end of the main tab control and not at their previous positions.
492
- # @return [void]
493
- def unsplit_all; end
494
-
495
- # Returns the image index for the given page.
496
- # @param nPage [Integer]
497
- # @return [Integer]
498
- def get_page_image(nPage) end
499
- alias_method :page_image, :get_page_image
500
-
501
- # Returns tab control based on point coordinates inside the tab frame.
502
- # @param pt [Array(Integer, Integer), Wx::Point]
503
- # @return [Wx::AUI::AuiTabCtrl]
504
- def get_tab_ctrl_from_point(pt) end
505
- alias_method :tab_ctrl_from_point, :get_tab_ctrl_from_point
506
-
507
- # Returns active tab control for this notebook.
508
- #
509
- # Active tab control is the one containing the currently selected page. If there is no selected page, the main tab control is returned, see {Wx::AUI::AuiNotebook#get_main_tab_ctrl}.
510
- # Non-nil pointer to either the active or main tab control.
511
- # @return [Wx::AUI::AuiTabCtrl]
512
- def get_active_tab_ctrl; end
513
- alias_method :active_tab_ctrl, :get_active_tab_ctrl
514
-
515
- # Returns all tab controls for this notebook.
516
- #
517
- # Vector of all tab controls, never empty as it always contains at least the main tab control.
518
- # @return [std::vector< wxAuiTabCtrl >]
519
- def get_all_tab_ctrls; end
520
- alias_method :all_tab_ctrls, :get_all_tab_ctrls
521
-
522
- # Returns the main tab control for this notebook.
523
- #
524
- # The main tab control is the one created by the notebook itself initially to contain the pages added to it.
525
- # Non-nil pointer to the main tab control.
526
- # @return [Wx::AUI::AuiTabCtrl]
527
- def get_main_tab_ctrl; end
528
- alias_method :main_tab_ctrl, :get_main_tab_ctrl
529
-
530
- end # AuiNotebook
531
-
532
- # Holds information about a page in {Wx::AUI::AuiNotebook}.
533
- #
534
- # An object of this class is notably passed to {Wx::AUI::AuiTabArt#draw_tab} and is used by it to render the pages tab accordingly.
535
- #
536
- # Category: Window Docking (wxAUI)
537
- #
538
- #
539
- # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
540
- # @wxrb_require USE_AUI
541
- class AuiNotebookPage < ::Object
542
-
543
- # Window shown on this page.
544
- #
545
- #
546
- # @return [Wx::Window]
547
- def window; end
548
- # Window shown on this page.
549
- #
550
- #
551
- # @param val [Wx::Window]
552
- # @return [void]
553
- def window=(val); end
554
-
555
- # Text displayed on the tab.
556
- #
557
- #
558
- # @return [String]
559
- def caption; end
560
- # Text displayed on the tab.
561
- #
562
- #
563
- # @param val [String]
564
- # @return [void]
565
- def caption=(val); end
566
-
567
- # Tooltip displayed when hovering over tab title.
568
- #
569
- #
570
- # @return [String]
571
- def tooltip; end
572
- # Tooltip displayed when hovering over tab title.
573
- #
574
- #
575
- # @param val [String]
576
- # @return [void]
577
- def tooltip=(val); end
578
-
579
- # Bitmap shown in the tab if valid.
580
- #
581
- #
582
- # @return [Wx::BitmapBundle]
583
- def bitmap; end
584
- # Bitmap shown in the tab if valid.
585
- #
586
- #
587
- # @param val [Wx::BitmapBundle]
588
- # @return [void]
589
- def bitmap=(val); end
590
-
591
- # True if the page is the currently selected page.
592
- #
593
- #
594
- # @return [Boolean]
595
- def active; end
596
- # True if the page is the currently selected page.
597
- #
598
- #
599
- # @param val [Boolean]
600
- # @return [void]
601
- def active=(val); end
602
-
603
- end # AuiNotebookPage
604
-
605
- # Simple struct combining {Wx::AUI::AuiTabCtrl} with the position inside it.
606
- #
607
- # This information fully determines the position of the page in {Wx::AUI::AuiNotebook}, see {Wx::AUI::AuiNotebook#get_page_position}.
608
- #
609
- #
610
- # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
611
- # @wxrb_require USE_AUI
612
- class AuiNotebookPosition < ::Object
613
-
614
- # Tab control containing the page or nil if the position is invalid.
615
- #
616
- #
617
- # @return [Wx::AUI::AuiTabCtrl]
618
- def tab_ctrl; end
619
-
620
- # Index of the page in this tab control or {Wx::NOT_FOUND} if invalid.
621
- #
622
- #
623
- # @return [Integer]
624
- def tab_idx; end
625
-
626
- end # AuiNotebookPosition
627
-
628
-
629
- end
630
-
631
- end