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,55 +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 PRT
10
-
11
- # This class represents the print and print setup common dialogs.
12
- #
13
- # You may obtain a {Wx::PRT::PrinterDC} device context from a successfully dismissed print dialog.
14
- #
15
- # Category: Printing Framework
16
- # @see Printing Framework Overview
17
- # @see wxPrintDialog Overview
18
- #
19
- #
20
- # @wxrb_require USE_PRINTING_ARCHITECTURE
21
- class PrintDialog < Object
22
-
23
- # @overload initialize(parent, data=nil)
24
- # Constructor.
25
- #
26
- # Pass a parent window, and optionally a pointer to a block of print data, which will be copied to the print dialog's print data.
27
- # @see Wx::PRT::PrintDialogData
28
- # @param parent [Wx::Window]
29
- # @param data [Wx::PRT::PrintDialogData]
30
- # @return [Wx::PRT::PrintDialog]
31
- # @overload initialize(parent, data)
32
- # @param parent [Wx::Window]
33
- # @param data [Wx::PRT::PrintData]
34
- # @return [Wx::PRT::PrintDialog]
35
- def initialize(*args) end
36
-
37
- # Returns the device context created by the print dialog, if any.
38
- #
39
- # When this function has been called, the ownership of the device context is transferred to the application, so it must then be deleted explicitly.
40
- # @return [Wx::DC]
41
- def get_print_dc; end
42
- alias_method :print_dc, :get_print_dc
43
-
44
- # Shows the dialog, returning {Wx::StandardID::ID_OK} if the user pressed OK, and {Wx::StandardID::ID_CANCEL} otherwise.
45
- #
46
- # After this function is called, a device context may be retrievable using {Wx::PRT::PrintDialog#get_print_dc}.
47
- # @return [Integer]
48
- def show_modal; end
49
-
50
- end # PrintDialog
51
-
52
-
53
- end
54
-
55
- end
@@ -1,518 +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 PRT
10
-
11
- # This class represents the Windows or PostScript printer, and is the vehicle through which printing may be launched by an application.
12
- #
13
- # Printing can also be achieved through using of lower functions and classes, but this and associated classes provide a more convenient and general method of printing.
14
- #
15
- # Category: Printing Framework
16
- # @see Printing Framework Overview
17
- # @see Wx::PRT::PrinterDC
18
- # @see Wx::PRT::PrintDialog
19
- # @see Wx::PRT::Printout
20
- # @see Wx::PRT::PrintPreview
21
- #
22
- #
23
- # @wxrb_require USE_PRINTING_ARCHITECTURE
24
- class Printer < Object
25
-
26
- # Constructor.
27
- #
28
- # Pass an optional pointer to a block of print dialog data, which will be copied to the printer object's local data.
29
- # @see Wx::PRT::PrintDialogData
30
- # @see Wx::PRT::PrintData
31
- # @param data [Wx::PRT::PrintDialogData]
32
- # @return [Wx::PRT::Printer]
33
- def initialize(data=nil) end
34
-
35
- # Creates the default printing abort window, with a cancel button.
36
- # @param parent [Wx::Window]
37
- # @param printout [Wx::PRT::Printout]
38
- # @return [Wx::PRT::PrintAbortDialog]
39
- def create_abort_window(parent, printout) end
40
-
41
- # Returns true if the user has aborted the print job.
42
- # @return [Boolean]
43
- def get_abort; end
44
- alias_method :abort, :get_abort
45
-
46
- # Starts the printing process.
47
- #
48
- # Provide a parent window, a user-defined {Wx::PRT::Printout} object which controls the printing of a document, and whether the print dialog should be invoked first.
49
- # {Wx::PRT::Printer#print} could return false if there was a problem initializing the printer device context (current printer not set, for example) or the user cancelled printing. Call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
50
- # @param parent [Wx::Window]
51
- # @param printout [Wx::PRT::Printout]
52
- # @param prompt [Boolean]
53
- # @return [Boolean]
54
- def print(parent, printout, prompt=true) end
55
-
56
- # Invokes the print dialog.
57
- #
58
- # If successful (the user did not press Cancel and no error occurred), a suitable device context will be returned; otherwise nil is returned; call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
59
- #
60
- # <div class="wxrb-remark">
61
- # <b>Remark:</b>
62
- # <p>The application must delete this device context to avoid a memory leak.
63
- # </p>
64
- # </div>
65
- # @param parent [Wx::Window]
66
- # @return [Wx::DC]
67
- def print_dialog(parent) end
68
-
69
- # Default error-reporting function.
70
- # @param parent [Wx::Window]
71
- # @param printout [Wx::PRT::Printout]
72
- # @param message [String]
73
- # @return [void]
74
- def report_error(parent, printout, message) end
75
-
76
- # Return last error.
77
- #
78
- # Valid after calling {Wx::PRT::Printer#print}, {Wx::PRT::Printer#print_dialog} or {Wx::PRT::PrintPreview#print}.
79
- # These functions set last error to {Wx::PRT::PrinterError::PRINTER_NO_ERROR} if no error happened.
80
- # Returned value is one of the following:
81
- #
82
- # {Wx::PRT::PrinterError::PRINTER_NO_ERROR}
83
- # No error happened.
84
- #
85
- # {Wx::PRT::PrinterError::PRINTER_CANCELLED}
86
- # The user cancelled printing.
87
- #
88
- # {Wx::PRT::PrinterError::PRINTER_ERROR}
89
- # There was an error during printing.
90
- # @return [Wx::PrinterError]
91
- def self.get_last_error; end
92
-
93
- end # Printer
94
-
95
- # This class encapsulates the functionality of printing out an application document.
96
- #
97
- # A new class must be derived and members overridden to respond to calls such as {Wx::PRT::Printout#on_print_page} and {Wx::PRT::Printout#has_page} and to render the print image onto an associated {Wx::DC}. Instances of this class are passed to {Wx::PRT::Printer#print} or to a {Wx::PRT::PrintPreview} object to initiate printing or previewing.
98
- # Your derived {Wx::PRT::Printout} is responsible for drawing both the preview image and the printed page. If your windows' drawing routines accept an arbitrary DC as an argument, you can re-use those routines within your {Wx::PRT::Printout} subclass to draw the printout image. You may also add additional drawing elements within your {Wx::PRT::Printout} subclass, like headers, footers, and/or page numbers. However, the image on the printed page will often differ from the image drawn on the screen, as will the print preview image not just in the presence of headers and footers, but typically in scale. A high-resolution printer presents a much larger drawing surface (i.e., a higher-resolution DC); a zoomed-out preview image presents a much smaller drawing surface (lower-resolution DC). By using the routines FitThisSizeToXXX() and/or MapScreenSizeToXXX() within your {Wx::PRT::Printout} subclass to set the user scale and origin of the associated DC, you can easily use a single drawing routine to draw on your application's windows, to create the print preview image, and to create the printed paper image, and achieve a common appearance to the preview image and the printed page.
99
- #
100
- # Category: Printing Framework
101
- # @see Printing Framework Overview
102
- # @see Wx::PRT::PrinterDC
103
- # @see Wx::PRT::PrintDialog
104
- # @see Wx::PRT::PageSetupDialog
105
- # @see Wx::PRT::Printer
106
- # @see Wx::PRT::PrintPreview
107
- #
108
- #
109
- # @wxrb_require USE_PRINTING_ARCHITECTURE
110
- class Printout < Object
111
-
112
- # Constructor.
113
- #
114
- # Pass an optional title argument - the current filename would be a good idea. This will appear in the printing list (at least in MSW)
115
- # @param title [String]
116
- # @return [Wx::PRT::Printout]
117
- def initialize(title=("Wx::PRT::Printout")) end
118
-
119
- # Set the user scale and device origin of the {Wx::DC} associated with this {Wx::PRT::Printout} so that the given image size fits entirely within the page rectangle and the origin is at the top left corner of the page rectangle.
120
- #
121
- # On MSW and Mac, the page rectangle is the printable area of the page. On other platforms and PostScript printing, the page rectangle is the entire paper.
122
- # Use this if you want your printed image as large as possible, but with the caveat that on some platforms, portions of the image might be cut off at the edges.
123
- # @param imageSize [Array(Integer, Integer), Wx::Size]
124
- # @return [void]
125
- def fit_this_size_to_page(imageSize) end
126
-
127
- # Set the user scale and device origin of the {Wx::DC} associated with this {Wx::PRT::Printout} so that the given image size fits entirely within the page margins set in the given {Wx::PRT::PageSetupDialogData} object.
128
- #
129
- # This function provides the greatest consistency across all platforms because it does not depend on having access to the printable area of the paper.
130
- #
131
- # <div class="wxrb-remark">
132
- # <b>Remark:</b>
133
- # <p>On Mac, the native {Wx::PRT::PageSetupDialog} does not let you set the page margins; you'll have to provide your own mechanism, or you can use the Mac-only class WXOSX.
134
- # </p>
135
- # </div>
136
- # @param imageSize [Array(Integer, Integer), Wx::Size]
137
- # @param pageSetupData [Wx::PRT::PageSetupDialogData]
138
- # @return [void]
139
- def fit_this_size_to_page_margins(imageSize, pageSetupData) end
140
-
141
- # Set the user scale and device origin of the {Wx::DC} associated with this {Wx::PRT::Printout} so that the given image size fits entirely within the paper and the origin is at the top left corner of the paper.
142
- #
143
- # Use this if you're managing your own page margins.
144
- #
145
- # <div class="wxrb-note">
146
- # <b>Note:</b>
147
- # <p>With most printers, the region around the edges of the paper are not printable so that the edges of the image could be cut off.
148
- # </p>
149
- # </div>
150
- # @param imageSize [Array(Integer, Integer), Wx::Size]
151
- # @return [void]
152
- def fit_this_size_to_paper(imageSize) end
153
-
154
- # Returns the device context associated with the printout (given to the printout at start of printing or previewing).
155
- #
156
- # The application can use {Wx::PRT::Printout#get_dc} to obtain a device context to draw on.
157
- # This will be a {Wx::PRT::PrinterDC} if printing under Windows or Mac, a {Wx::PRT::PostScriptDC} if printing on other platforms, and a {Wx::MemoryDC} if previewing.
158
- # @return [Wx::DC]
159
- def get_dc; end
160
- alias_method :dc, :get_dc
161
-
162
- # Return the rectangle corresponding to the page margins specified by the given {Wx::PRT::PageSetupDialogData} object in the associated {Wx::DC}'s logical coordinates for the current user scale and device origin.
163
- #
164
- # The page margins are specified with respect to the edges of the paper on all platforms.
165
- # @param pageSetupData [Wx::PRT::PageSetupDialogData]
166
- # @return [Wx::Rect]
167
- def get_logical_page_margins_rect(pageSetupData) end
168
- alias_method :logical_page_margins_rect, :get_logical_page_margins_rect
169
-
170
- # Return the rectangle corresponding to the page in the associated {Wx::DC} 's logical coordinates for the current user scale and device origin.
171
- #
172
- # On MSW and Mac, this will be the printable area of the paper. On other platforms and PostScript printing, this will be the full paper rectangle.
173
- # @return [Wx::Rect]
174
- def get_logical_page_rect; end
175
- alias_method :logical_page_rect, :get_logical_page_rect
176
-
177
- # Return the rectangle corresponding to the paper in the associated {Wx::DC} 's logical coordinates for the current user scale and device origin.
178
- # @return [Wx::Rect]
179
- def get_logical_paper_rect; end
180
- alias_method :logical_paper_rect, :get_logical_paper_rect
181
-
182
- # Returns the number of pixels per logical inch of the printer device context.
183
- #
184
- # Dividing the printer PPI by the screen PPI can give a suitable scaling factor for drawing text onto the printer.
185
- # Remember to multiply this by a scaling factor to take the preview DC size into account. Or you can just use the FitThisSizeToXXX() and MapScreenSizeToXXX routines below, which do most of the scaling calculations for you.
186
- # @return [Array(Integer,Integer)]
187
- def get_ppi_printer; end
188
- alias_method :ppi_printer, :get_ppi_printer
189
-
190
- # Returns the number of pixels per logical inch of the screen device context.
191
- #
192
- # Dividing the printer PPI by the screen PPI can give a suitable scaling factor for drawing text onto the printer.
193
- # If you are doing your own scaling, remember to multiply this by a scaling factor to take the preview DC size into account.
194
- # @return [Array(Integer,Integer)]
195
- def get_ppi_screen; end
196
- alias_method :ppi_screen, :get_ppi_screen
197
-
198
- # Called by the framework to obtain information from the application about minimum and maximum page numbers to print.
199
- #
200
- # <div class="wxrb-note">
201
- # <b>Note:</b>
202
- # <p>This function is only called if {Wx::PRT::Printout#get_pages_info} is not overridden and new code should override that function instead of this one.
203
- # </p>
204
- # </div>
205
- #
206
- # The values returned in pageFrom and pageTo are ignored, and the page ranges selected by user in the print dialog are always used instead. Override {Wx::PRT::Printout#get_pages_info} if you need to customize the page ranges to be printed.
207
- # By default returns (1, 32000) for the page minimum and maximum values.
208
- # minPage must be greater than zero and maxPage must be greater than minPage, otherwise printing is aborted.
209
- # @return [Array(Integer,Integer,Integer,Integer)]
210
- def get_page_info; end
211
- alias_method :page_info, :get_page_info
212
-
213
- # Called by the framework to obtain information from the application about the entire range of pages and sub-ranges to be printed.
214
- #
215
- # The implementation of this function in the derived class should return the total range of pages and may also return one or more ranges of pages to print.
216
- # Note that ranges vector is filled with the values selected by the user in the print dialog on entry to this function, so in many cases it shouldn't be changed to respect the user's choice. However, you may override it if desired and you should set the range if the associated {Wx::PRT::PrintDialogData} indicates that only the current or only the selected pages should be printed, e.g. when printing the current page you need to clear ranges vector and add a single range with both fromPage and toPage set to the current page index to it.
217
- # As a special case, if ranges is empty on return from this function, all pages are printed.
218
- # The default implementation forwards to {Wx::PRT::Printout#get_page_info} for compatibility but it is recommended to override this function in the new code, and this is required to support printing the current page or selection.
219
- # @param ranges [Array<Wx::PRT::PrintPageRange>]
220
- # @return [Array(Wx::PRT::PrintPageRange,Array<Wx::PRT::PrintPageRange>)]
221
- def get_pages_info(ranges) end
222
- alias_method :pages_info, :get_pages_info
223
-
224
- # Returns the size of the printer page in millimetres.
225
- # @return [Array(Integer,Integer)]
226
- def get_page_size_mm; end
227
- alias_method :page_size_mm, :get_page_size_mm
228
-
229
- # Returns the size of the printer page in pixels, called the page rectangle.
230
- #
231
- # The page rectangle has a top left corner at (0,0) and a bottom right corner at (w,h). These values may not be the same as the values returned from {Wx::DC#get_size}; if the printout is being used for previewing, a memory device context is used, which uses a bitmap size reflecting the current preview zoom. The application must take this discrepancy into account if previewing is to be supported.
232
- # @return [Array(Integer,Integer)]
233
- def get_page_size_pixels; end
234
- alias_method :page_size_pixels, :get_page_size_pixels
235
-
236
- # Returns the rectangle that corresponds to the entire paper in pixels, called the paper rectangle.
237
- #
238
- # This distinction between paper rectangle and page rectangle reflects the fact that most printers cannot print all the way to the edge of the paper. The page rectangle is a rectangle whose top left corner is at (0,0) and whose width and height are given by {Wx::DC#get_page_size_pixels}.
239
- # On MSW and Mac, the page rectangle gives the printable area of the paper, while the paper rectangle represents the entire paper, including non-printable borders. Thus, the rectangle returned by {Wx::DC#get_paper_rect_pixels}.
240
- # On other platforms and for PostScript printing, the paper is treated as if its entire area were printable, so this function will return the same rectangle as the page rectangle.
241
- # @return [Wx::Rect]
242
- def get_paper_rect_pixels; end
243
- alias_method :paper_rect_pixels, :get_paper_rect_pixels
244
-
245
- # Returns the title of the printout.
246
- #
247
- # Todothe python note here was wrong
248
- # @return [String]
249
- def get_title; end
250
- alias_method :title, :get_title
251
-
252
- # Should be overridden to return true if the document has this page, or false if not.
253
- #
254
- # Returning false signifies the end of the document. By default, HasPage behaves as if the document has only one page.
255
- # @param pageNum [Integer]
256
- # @return [Boolean]
257
- def has_page(pageNum) end
258
- alias_method :has_page?, :has_page
259
-
260
- # Returns true if the printout is currently being used for previewing.
261
- #
262
- #
263
- # @see Wx::PRT::Printout#get_preview
264
- # @return [Boolean]
265
- def is_preview; end
266
- alias_method :preview?, :is_preview
267
-
268
- # Returns the associated preview object if any.
269
- #
270
- # If this printout object is used for previewing, returns the associated {Wx::PRT::PrintPreview}. Otherwise returns nil.
271
- # The returned pointer is not owned by the printout and must not be deleted.
272
- # @see Wx::PRT::Printout#is_preview
273
- # @return [Wx::PRT::PrintPreview]
274
- def get_preview; end
275
- alias_method :preview, :get_preview
276
-
277
- # Set the user scale and device origin of the {Wx::DC} associated with this {Wx::PRT::Printout} so that one screen pixel maps to one device pixel on the DC.
278
- #
279
- # That is, the user scale is set to (1,1) and the device origin is set to (0,0).
280
- # Use this if you want to do your own scaling prior to calling {Wx::DC} drawing calls, for example, if your underlying model is floating-point and you want to achieve maximum drawing precision on high-resolution printers.
281
- # You can use the GetLogicalXXXRect() routines below to obtain the paper rectangle, page rectangle, or page margins rectangle to perform your own scaling.
282
- #
283
- # <div class="wxrb-note">
284
- # <b>Note:</b>
285
- # <p>While the underlying drawing model of macOS is floating-point, wxWidgets's drawing model scales from integer coordinates.
286
- # </p>
287
- # </div>
288
- # @return [void]
289
- def map_screen_size_to_device; end
290
-
291
- # This sets the user scale of the {Wx::DC} associated with this {Wx::PRT::Printout} to the same scale as {Wx::PRT::Printout#map_screen_size_to_paper} but sets the logical origin to the top left corner of the page rectangle.
292
- # @return [void]
293
- def map_screen_size_to_page; end
294
-
295
- # This sets the user scale of the {Wx::DC} associated with this {Wx::PRT::Printout} to the same scale as {Wx::PRT::Printout#map_screen_size_to_page_margins} but sets the logical origin to the top left corner of the page margins specified by the given {Wx::PRT::PageSetupDialogData} object.
296
- # @param pageSetupData [Wx::PRT::PageSetupDialogData]
297
- # @return [void]
298
- def map_screen_size_to_page_margins(pageSetupData) end
299
-
300
- # Set the user scale and device origin of the {Wx::DC} associated with this {Wx::PRT::Printout} so that the printed page matches the screen size as closely as possible and the logical origin is in the top left corner of the paper rectangle.
301
- #
302
- # That is, a 100-pixel object on screen should appear at the same size on the printed page. (It will, of course, be larger or smaller in the preview image, depending on the zoom factor.)
303
- # Use this if you want WYSIWYG behaviour, e.g., in a text editor.
304
- # @return [void]
305
- def map_screen_size_to_paper; end
306
-
307
- # Shift the device origin by an amount specified in logical coordinates.
308
- # @param xoff [Integer]
309
- # @param yoff [Integer]
310
- # @return [void]
311
- def offset_logical_origin(xoff, yoff) end
312
-
313
- # Called by the framework at the start of document printing.
314
- #
315
- # Return false from this function cancels the print job.
316
- # {Wx::PRT::Printout#on_begin_document} is called once for every copy printed.
317
- #
318
- # <div class="wxrb-remark">
319
- # <b>Remark:</b>
320
- # <p>The base {Wx::PRT::Printout#on_begin_document} must be called (and the return value checked) from within the overridden function, since it calls {Wx::DC#start_doc}.
321
- # </p>
322
- # </div>
323
- # @param startPage [Integer]
324
- # @param endPage [Integer]
325
- # @return [Boolean]
326
- def on_begin_document(startPage, endPage) end
327
-
328
- # Called by the framework at the start of printing.
329
- #
330
- # {Wx::PRT::Printout#on_begin_printing} is called once for every print job (regardless of how many copies are being printed).
331
- # @return [void]
332
- def on_begin_printing; end
333
-
334
- # Called by the framework at the end of document printing.
335
- #
336
- # {Wx::PRT::Printout#on_end_document} is called once for every copy printed.
337
- #
338
- # <div class="wxrb-remark">
339
- # <b>Remark:</b>
340
- # <p>The base {Wx::PRT::Printout#on_end_document} must be called from within the overridden function, since it calls {Wx::DC#end_doc}.
341
- # </p>
342
- # </div>
343
- # @return [void]
344
- def on_end_document; end
345
-
346
- # Called by the framework at the end of printing.
347
- #
348
- # OnEndPrinting is called once for every print job (regardless of how many copies are being printed).
349
- # @return [void]
350
- def on_end_printing; end
351
-
352
- # Called once by the framework before any other demands are made of the {Wx::PRT::Printout} object.
353
- #
354
- # This gives the object an opportunity to calculate the number of pages in the document, for example.
355
- # @return [void]
356
- def on_prepare_printing; end
357
-
358
- # Called by the framework when a page should be printed.
359
- #
360
- # Returning false cancels the print job.
361
- # @param pageNum [Integer]
362
- # @return [Boolean]
363
- def on_print_page(pageNum) end
364
-
365
- # Set the device origin of the associated {Wx::DC} so that the current logical point becomes the new logical origin.
366
- # @param x [Integer]
367
- # @param y [Integer]
368
- # @return [void]
369
- def set_logical_origin(x, y) end
370
-
371
- end # Printout
372
-
373
- # Objects of this class manage the print preview process.
374
- #
375
- # The object is passed a {Wx::PRT::Printout} object, and the {Wx::PRT::PrintPreview} object itself is passed to a {Wx::PRT::PreviewFrame} object. Previewing is started by initializing and showing the preview frame. Unlike {Wx::PRT::Printer#print}, flow of control returns to the application immediately after the frame is shown.
376
- #
377
- # <div class="wxrb-note">
378
- # <b>Note:</b>
379
- # <p>The preview shown is only exact on Windows. On other platforms, the {Wx::DC} used for preview is different from what is used for printing and the results may be significantly different, depending on how is the output created. In particular, printing code relying on {Wx::DC#get_text_extent} heavily (for example, {Wx::HTML::HtmlEasyPrinting} and other {Wx::HTML} classes do) is affected. It is recommended to use native preview functionality on platforms that offer it (macOS, GTK+).
380
- # </p>
381
- # </div>
382
- #
383
- # Category: Printing Framework
384
- # @see Printing Framework Overview
385
- # @see Wx::PRT::PrinterDC
386
- # @see Wx::PRT::PrintDialog
387
- # @see Wx::PRT::Printout
388
- # @see Wx::PRT::Printer
389
- # @see Wx::PreviewCanvas
390
- # @see Wx::PreviewControlBar
391
- # @see Wx::PRT::PreviewFrame
392
- #
393
- #
394
- # @wxrb_require USE_PRINTING_ARCHITECTURE
395
- class PrintPreview < Object
396
-
397
- # @overload initialize(printout, printoutForPrinting=nil, data=nil)
398
- # Constructor.
399
- #
400
- # Pass a printout object, an optional printout object to be used for actual printing, and the address of an optional block of printer data, which will be copied to the print preview object's print data.
401
- # If printoutForPrinting is non-null, a <b>"Print..."</b> button will be placed on the preview frame so that the user can print directly from the preview interface.
402
- #
403
- # <div class="wxrb-remark">
404
- # <b>Remark:</b>
405
- # <p>Do not explicitly delete the printout objects once this constructor has been called, since they will be deleted in the {Wx::PRT::PrintPreview} destructor. The same does not apply to the data argument.
406
- # </p>
407
- # </div>
408
- #
409
- # Use {Wx::PRT::PrintPreview#is_ok} to check whether the {Wx::PRT::PrintPreview} object was created correctly.
410
- # @param printout [Wx::PRT::Printout]
411
- # @param printoutForPrinting [Wx::PRT::Printout]
412
- # @param data [Wx::PRT::PrintDialogData]
413
- # @return [Wx::PRT::PrintPreview]
414
- # @overload initialize(printout, printoutForPrinting, data)
415
- # @param printout [Wx::PRT::Printout]
416
- # @param printoutForPrinting [Wx::PRT::Printout]
417
- # @param data [Wx::PRT::PrintData]
418
- # @return [Wx::PRT::PrintPreview]
419
- def initialize(*args) end
420
-
421
- # Gets the preview window used for displaying the print preview image.
422
- # @return [wxScrolledWindow]
423
- def get_canvas; end
424
- alias_method :canvas, :get_canvas
425
-
426
- # Gets the page currently being previewed.
427
- # @return [Integer]
428
- def get_current_page; end
429
- alias_method :current_page, :get_current_page
430
-
431
- # Gets the frame used for displaying the print preview canvas and control bar.
432
- # @return [Wx::Frame]
433
- def get_frame; end
434
- alias_method :frame, :get_frame
435
-
436
- # Returns the maximum page number.
437
- # @return [Integer]
438
- def get_max_page; end
439
- alias_method :max_page, :get_max_page
440
-
441
- # Returns the minimum page number.
442
- # @return [Integer]
443
- def get_min_page; end
444
- alias_method :min_page, :get_min_page
445
-
446
- # Gets the preview printout object associated with the {Wx::PRT::PrintPreview} object.
447
- # @return [Wx::PRT::Printout]
448
- def get_printout; end
449
- alias_method :printout, :get_printout
450
-
451
- # Gets the printout object to be used for printing from within the preview interface, or nil if none exists.
452
- # @return [Wx::PRT::Printout]
453
- def get_printout_for_printing; end
454
- alias_method :printout_for_printing, :get_printout_for_printing
455
-
456
- # Gets the current percentage zoom level of the preview canvas.
457
- #
458
- #
459
- # @see Wx::PRT::PrintPreview#set_zoom
460
- # @return [Integer]
461
- def get_zoom; end
462
- alias_method :zoom, :get_zoom
463
-
464
- # Returns true if the {Wx::PRT::PrintPreview} is valid, false otherwise.
465
- #
466
- # It could return false if there was a problem initializing the printer device context (current printer not set, for example).
467
- # @return [Boolean]
468
- def is_ok; end
469
- alias_method :ok?, :is_ok
470
-
471
- # Invokes the print process using the second {Wx::PRT::Printout} object supplied in the {Wx::PRT::PrintPreview} constructor.
472
- #
473
- # Will normally be called by the <b>Print</b>... panel item on the preview frame's control bar.
474
- # Returns false in case of error call {Wx::PRT::Printer.get_last_error} to get detailed information about the kind of the error.
475
- # @param prompt [Boolean]
476
- # @return [Boolean]
477
- def print(prompt) end
478
-
479
- # Renders a page into a {Wx::MemoryDC}.
480
- #
481
- # Used internally by {Wx::PRT::PrintPreview}.
482
- # @param pageNum [Integer]
483
- # @return [Boolean]
484
- def render_page(pageNum) end
485
-
486
- # Sets the current page to be previewed.
487
- # @param pageNum [Integer]
488
- # @return [Boolean]
489
- def set_current_page(pageNum) end
490
- alias_method :current_page=, :set_current_page
491
-
492
- # Sets the frame to be used for displaying the print preview canvas and control bar.
493
- # @param frame [Wx::Frame]
494
- # @return [void]
495
- def set_frame(frame) end
496
- alias_method :frame=, :set_frame
497
-
498
- # Associates a printout object with the {Wx::PRT::PrintPreview} object.
499
- # @param printout [Wx::PRT::Printout]
500
- # @return [void]
501
- def set_printout(printout) end
502
- alias_method :printout=, :set_printout
503
-
504
- # Sets the percentage preview zoom, and refreshes the preview canvas accordingly.
505
- #
506
- #
507
- # @see Wx::PRT::PrintPreview#get_zoom
508
- # @param percent [Integer]
509
- # @return [void]
510
- def set_zoom(percent) end
511
- alias_method :zoom=, :set_zoom
512
-
513
- end # PrintPreview
514
-
515
-
516
- end
517
-
518
- end
@@ -1,37 +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 PRT
10
-
11
- # A printer device context is specific to MSW and Mac, and allows access to any printer with a Windows or Macintosh driver.
12
- #
13
- # See {Wx::DC} for further information on device contexts, and {Wx::DC#get_size} for advice on achieving the correct scaling for the page.
14
- #
15
- # Category: Printing Framework
16
- # @see Printing Framework Overview
17
- # @see Wx::DC
18
- #
19
- #
20
- #
21
- # @note This class is <b>untracked</b> and should not be derived from nor instances extended!
22
- # @wxrb_require WXMSW|WXOSX|USE_GTKPRINT,USE_PRINTING_ARCHITECTURE
23
- class PrinterDC < DC
24
-
25
- # Return the rectangle in device coordinates that corresponds to the full paper area, including the nonprinting regions of the paper.
26
- #
27
- # The point (0,0) in device coordinates is the top left corner of the page rectangle, which is the printable area on MSW and Mac. The coordinates of the top left corner of the paper rectangle will therefore have small negative values, while the bottom right coordinates will be somewhat larger than the values returned by {Wx::DC#get_size}.
28
- # @return [Wx::Rect]
29
- def get_paper_rect; end
30
- alias_method :paper_rect, :get_paper_rect
31
-
32
- end # PrinterDC
33
-
34
-
35
- end
36
-
37
- end