wxruby3 0.9.0.pre.rc.3-x64-mingw-ucrt → 0.9.0-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/ext/mkrf_conf_bingem.rb +4 -1
- data/ext/wxbase32u_gcc_custom.dll +0 -0
- data/ext/wxbase32u_net_gcc_custom.dll +0 -0
- data/ext/wxbase32u_xml_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_aui_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_core_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_gl_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_html_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_media_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_propgrid_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_qa_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_ribbon_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_richtext_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_stc_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_webview_gcc_custom.dll +0 -0
- data/ext/wxmsw32u_xrc_gcc_custom.dll +0 -0
- data/lib/wx/accessors.rb +10 -2
- data/lib/wx/aui/auifloatframe.rb +20 -0
- data/lib/wx/aui/auimanager.rb +3 -0
- data/lib/wx/aui/auinotebook.rb +17 -0
- data/lib/wx/aui/events/evt_list.rb +7 -7
- data/lib/wx/aui/require.rb +5 -1
- data/lib/wx/aui.rb +4 -1
- data/lib/wx/core/acceleratortable.rb +8 -0
- data/lib/wx/core/animation.rb +8 -0
- data/lib/wx/core/app.rb +8 -0
- data/lib/wx/core/array_ext.rb +7 -0
- data/lib/wx/core/art_locator.rb +7 -0
- data/lib/wx/core/artprovider.rb +9 -0
- data/lib/wx/core/bitmap.rb +16 -4
- data/lib/wx/core/bitmap_combobox.rb +7 -0
- data/lib/wx/core/brush.rb +7 -0
- data/lib/wx/core/busycursor.rb +9 -0
- data/lib/wx/core/choice.rb +7 -0
- data/lib/wx/core/choicedlg.rb +7 -0
- data/lib/wx/core/clientdc.rb +9 -0
- data/lib/wx/core/clipboard.rb +8 -0
- data/lib/wx/core/collapsible_pane.rb +8 -1
- data/lib/wx/core/colour.rb +8 -0
- data/lib/wx/core/combo_ctrl.rb +110 -0
- data/lib/wx/core/combobox.rb +7 -0
- data/lib/wx/core/config.rb +303 -0
- data/lib/wx/core/controlwithitems.rb +12 -1
- data/lib/wx/core/cursor.rb +14 -4
- data/lib/wx/core/data_object.rb +7 -0
- data/lib/wx/core/dataformat.rb +9 -0
- data/lib/wx/core/datetime.rb +14 -0
- data/lib/wx/core/dc.rb +7 -0
- data/lib/wx/core/dialog.rb +18 -1
- data/lib/wx/core/enum.rb +7 -0
- data/lib/wx/core/event.rb +7 -0
- data/lib/wx/core/event_blocker.rb +7 -0
- data/lib/wx/core/event_loop.rb +7 -0
- data/lib/wx/core/events/evt_list.rb +76 -0
- data/lib/wx/core/evthandler.rb +8 -0
- data/lib/wx/core/ext.rb +7 -0
- data/lib/wx/core/file_dialog.rb +23 -0
- data/lib/wx/core/find_replace_dialog.rb +7 -0
- data/lib/wx/core/functions.rb +8 -0
- data/lib/wx/core/gauge.rb +10 -1
- data/lib/wx/core/genericdirctrl.rb +9 -0
- data/lib/wx/core/hboxsizer.rb +16 -0
- data/lib/wx/core/helpcontroller.rb +8 -0
- data/lib/wx/core/helpcontrollerhelpprovider.rb +9 -0
- data/lib/wx/core/helpprovider.rb +10 -1
- data/lib/wx/core/icon.rb +17 -6
- data/lib/wx/core/id_helper.rb +7 -0
- data/lib/wx/core/image.rb +16 -4
- data/lib/wx/core/imagelist.rb +8 -1
- data/lib/wx/core/listbox.rb +7 -0
- data/lib/wx/core/listctrl.rb +9 -0
- data/lib/wx/core/locale.rb +8 -0
- data/lib/wx/core/log.rb +24 -0
- data/lib/wx/core/menu.rb +9 -0
- data/lib/wx/core/menu_bar.rb +7 -0
- data/lib/wx/core/menuitem.rb +9 -0
- data/lib/wx/core/notebook.rb +9 -0
- data/lib/wx/core/object.rb +9 -0
- data/lib/wx/core/paintdc.rb +7 -0
- data/lib/wx/core/pen.rb +7 -0
- data/lib/wx/core/pen_info.rb +7 -0
- data/lib/wx/core/platform_info.rb +7 -0
- data/lib/wx/core/point.rb +8 -0
- data/lib/wx/core/real_point.rb +8 -0
- data/lib/wx/core/rect.rb +9 -0
- data/lib/wx/core/region_iterator.rb +7 -0
- data/lib/wx/core/simplehelpprovider.rb +9 -0
- data/lib/wx/core/size.rb +8 -0
- data/lib/wx/core/sizer.rb +9 -0
- data/lib/wx/core/splash_screen.rb +22 -2
- data/lib/wx/core/text_entry.rb +7 -0
- data/lib/wx/core/textctrl.rb +86 -5
- data/lib/wx/core/timer.rb +9 -0
- data/lib/wx/core/toolbar.rb +9 -0
- data/lib/wx/core/toolbartool.rb +8 -0
- data/lib/wx/core/treectrl.rb +9 -0
- data/lib/wx/core/v_list_box.rb +7 -0
- data/lib/wx/core/validator.rb +7 -0
- data/lib/wx/core/variant.rb +7 -0
- data/lib/wx/core/vboxsizer.rb +16 -0
- data/lib/wx/core/window.rb +8 -0
- data/lib/wx/core/window_update_locker.rb +9 -0
- data/lib/wx/core/xmlresource.rb +8 -0
- data/lib/wx/core.rb +4 -1
- data/lib/wx/doc/app.rb +7 -1
- data/lib/wx/doc/array_ext.rb +6 -0
- data/lib/wx/doc/art_locator.rb +7 -0
- data/lib/wx/doc/aui/auimanager.rb +6 -0
- data/lib/wx/doc/aui/auinotebook.rb +6 -0
- data/lib/wx/doc/bitmap.rb +12 -4
- data/lib/wx/doc/brush.rb +6 -0
- data/lib/wx/doc/busy_info.rb +6 -0
- data/lib/wx/doc/client_dc.rb +6 -0
- data/lib/wx/doc/clipboard.rb +6 -0
- data/lib/wx/doc/colour_dialog.rb +6 -0
- data/lib/wx/doc/config.rb +190 -0
- data/lib/wx/doc/const.rb +7 -0
- data/lib/wx/doc/controlwithitems.rb +6 -0
- data/lib/wx/doc/core.rb +6 -0
- data/lib/wx/doc/cursor.rb +13 -5
- data/lib/wx/doc/data_object.rb +6 -0
- data/lib/wx/doc/datetime.rb +16 -0
- data/lib/wx/doc/dc.rb +6 -0
- data/lib/wx/doc/enum.rb +8 -1
- data/lib/wx/doc/event.rb +12 -0
- data/lib/wx/doc/event_blocker.rb +6 -0
- data/lib/wx/doc/event_loop.rb +6 -0
- data/lib/wx/doc/events.rb +6 -0
- data/lib/wx/doc/evthandler.rb +8 -0
- data/lib/wx/doc/extra/01_packages.md +52 -51
- data/lib/wx/doc/extra/05_event-handling.md +37 -12
- data/lib/wx/doc/extra/06_geometry.md +5 -5
- data/lib/wx/doc/extra/07_colour_and_font.md +2 -2
- data/lib/wx/doc/extra/09_exceptions.md +1 -1
- data/lib/wx/doc/extra/10_art.md +18 -12
- data/lib/wx/doc/extra/11_drawing_and_dc.md +4 -4
- data/lib/wx/doc/font.rb +6 -0
- data/lib/wx/doc/font_data.rb +16 -0
- data/lib/wx/doc/functions.rb +9 -1
- data/lib/wx/doc/gc_dc.rb +6 -0
- data/lib/wx/doc/gdi_common.rb +8 -1
- data/lib/wx/doc/gen/about_dialog_info.rb +9 -9
- data/lib/wx/doc/gen/accelerator.rb +4 -9
- data/lib/wx/doc/gen/accessible.rb +21 -21
- data/lib/wx/doc/gen/activity_indicator.rb +2 -2
- data/lib/wx/doc/gen/animation.rb +13 -13
- data/lib/wx/doc/gen/animation_ctrl.rb +7 -7
- data/lib/wx/doc/gen/any_button.rb +2 -2
- data/lib/wx/doc/gen/app.rb +16 -85
- data/lib/wx/doc/gen/app_traits.rb +381 -0
- data/lib/wx/doc/gen/art_provider.rb +3 -3
- data/lib/wx/doc/gen/aui/aui_manager.rb +12 -14
- data/lib/wx/doc/gen/aui/aui_manager_event.rb +5 -5
- data/lib/wx/doc/gen/aui/aui_mdi_child_frame.rb +13 -14
- data/lib/wx/doc/gen/aui/aui_mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_mdi_parent_frame.rb +2 -2
- data/lib/wx/doc/gen/aui/aui_notebook.rb +102 -19
- data/lib/wx/doc/gen/aui/aui_notebook_event.rb +1 -1
- data/lib/wx/doc/gen/aui/aui_pane_info.rb +44 -44
- data/lib/wx/doc/gen/aui/aui_tab_art.rb +11 -11
- data/lib/wx/doc/gen/aui/aui_tool_bar.rb +28 -28
- data/lib/wx/doc/gen/aui/aui_tool_bar_art.rb +2 -2
- data/lib/wx/doc/gen/aui/aui_tool_bar_event.rb +3 -3
- data/lib/wx/doc/gen/aui/aui_tool_bar_item.rb +7 -7
- data/lib/wx/doc/gen/aui/event_list.rb +7 -0
- data/lib/wx/doc/gen/banner_window.rb +98 -0
- data/lib/wx/doc/gen/bitmap.rb +24 -55
- data/lib/wx/doc/gen/bitmap_button.rb +3 -3
- data/lib/wx/doc/gen/bitmap_combo_box.rb +2 -2
- data/lib/wx/doc/gen/book_ctrl_base.rb +13 -13
- data/lib/wx/doc/gen/book_ctrl_event.rb +1 -1
- data/lib/wx/doc/gen/brush.rb +8 -8
- data/lib/wx/doc/gen/button.rb +4 -4
- data/lib/wx/doc/gen/calendar_ctrl.rb +12 -12
- data/lib/wx/doc/gen/calendar_date_attr.rb +11 -11
- data/lib/wx/doc/gen/calendar_event.rb +2 -8
- data/lib/wx/doc/gen/caret.rb +4 -4
- data/lib/wx/doc/gen/check_box.rb +9 -9
- data/lib/wx/doc/gen/check_list_box.rb +4 -4
- data/lib/wx/doc/gen/choice.rb +3 -3
- data/lib/wx/doc/gen/choicebook.rb +1 -1
- data/lib/wx/doc/gen/clipboard.rb +9 -9
- data/lib/wx/doc/gen/collapsible_pane.rb +4 -4
- data/lib/wx/doc/gen/collapsible_pane_event.rb +3 -3
- data/lib/wx/doc/gen/colour.rb +26 -26
- data/lib/wx/doc/gen/colour_dialog.rb +6 -6
- data/lib/wx/doc/gen/colour_picker_ctrl.rb +1 -1
- data/lib/wx/doc/gen/combo_box.rb +7 -7
- data/lib/wx/doc/gen/combo_ctrl.rb +960 -0
- data/lib/wx/doc/gen/command_link_button.rb +110 -0
- data/lib/wx/doc/gen/config_base.rb +10 -0
- data/lib/wx/doc/gen/context_help_button.rb +3 -3
- data/lib/wx/doc/gen/control.rb +3 -3
- data/lib/wx/doc/gen/control_with_items.rb +5 -5
- data/lib/wx/doc/gen/core.rb +5 -5
- data/lib/wx/doc/gen/cursor.rb +3 -8
- data/lib/wx/doc/gen/data_format.rb +3 -3
- data/lib/wx/doc/gen/data_object.rb +13 -13
- data/lib/wx/doc/gen/date_event.rb +1 -1
- data/lib/wx/doc/gen/date_picker_ctrl.rb +5 -5
- data/lib/wx/doc/gen/dc.rb +125 -62
- data/lib/wx/doc/gen/dialog.rb +46 -17
- data/lib/wx/doc/gen/dir_filter_list_ctrl.rb +1 -1
- data/lib/wx/doc/gen/dir_picker_ctrl.rb +3 -3
- data/lib/wx/doc/gen/drag_drop.rb +18 -44
- data/lib/wx/doc/gen/drag_image.rb +7 -32
- data/lib/wx/doc/gen/editable_list_box.rb +2 -2
- data/lib/wx/doc/gen/event.rb +15 -23
- data/lib/wx/doc/gen/event_blocker.rb +1 -1
- data/lib/wx/doc/gen/event_list.rb +103 -5
- data/lib/wx/doc/gen/events.rb +151 -151
- data/lib/wx/doc/gen/evt_handler.rb +7 -7
- data/lib/wx/doc/gen/ext_help_controller.rb +8 -8
- data/lib/wx/doc/gen/file_dialog.rb +4 -2
- data/lib/wx/doc/gen/file_dialog_custom_control.rb +146 -0
- data/lib/wx/doc/gen/file_dialog_customize_hook.rb +159 -0
- data/lib/wx/doc/gen/file_dir_picker_event.rb +1 -1
- data/lib/wx/doc/gen/file_picker_ctrl.rb +3 -3
- data/lib/wx/doc/gen/file_system.rb +250 -0
- data/lib/wx/doc/gen/find_dialog_event.rb +1 -1
- data/lib/wx/doc/gen/find_replace_dialog.rb +1 -1
- data/lib/wx/doc/gen/flex_grid_sizer.rb +4 -4
- data/lib/wx/doc/gen/font.rb +60 -65
- data/lib/wx/doc/gen/font_data.rb +6 -6
- data/lib/wx/doc/gen/font_dialog.rb +2 -2
- data/lib/wx/doc/gen/font_picker_ctrl.rb +1 -1
- data/lib/wx/doc/gen/frame.rb +6 -20
- data/lib/wx/doc/gen/fs_file.rb +61 -21
- data/lib/wx/doc/gen/gauge.rb +3 -3
- data/lib/wx/doc/gen/gb_sizer_item.rb +12 -26
- data/lib/wx/doc/gen/gdi_common.rb +8 -8
- data/lib/wx/doc/gen/generic_dir_ctrl.rb +6 -6
- data/lib/wx/doc/gen/graphics_context.rb +291 -60
- data/lib/wx/doc/gen/graphics_object.rb +47 -101
- data/lib/wx/doc/gen/grid/grid_cell_activatable_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_attr.rb +36 -51
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_auto_wrap_string_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_bool_editor.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_bool_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_choice_editor.rb +7 -12
- data/lib/wx/doc/gen/grid/grid_cell_date_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_date_time_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_editor.rb +6 -4
- data/lib/wx/doc/gen/grid/grid_cell_enum_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_enum_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_float_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_number_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_renderer.rb +3 -1
- data/lib/wx/doc/gen/grid/grid_cell_string_renderer.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_cell_text_editor.rb +2 -0
- data/lib/wx/doc/gen/grid/grid_ctrl.rb +414 -171
- data/lib/wx/doc/gen/grid/grid_editor_created_event.rb +1 -1
- data/lib/wx/doc/gen/grid/grid_event.rb +7 -7
- data/lib/wx/doc/gen/grid/grid_range_select_event.rb +9 -9
- data/lib/wx/doc/gen/grid/grid_size_event.rb +5 -5
- data/lib/wx/doc/gen/grid/grid_string_table.rb +6 -6
- data/lib/wx/doc/gen/grid/grid_table_base.rb +15 -15
- data/lib/wx/doc/gen/grid_bag_sizer.rb +10 -10
- data/lib/wx/doc/gen/gui_event_loop.rb +12 -12
- data/lib/wx/doc/gen/header_ctrl.rb +755 -0
- data/lib/wx/doc/gen/header_ctrl_event.rb +131 -0
- data/lib/wx/doc/gen/help_controller.rb +7 -7
- data/lib/wx/doc/gen/help_provider.rb +3 -3
- data/lib/wx/doc/gen/html/html_cell.rb +67 -44
- data/lib/wx/doc/gen/html/html_cell_event.rb +3 -3
- data/lib/wx/doc/gen/html/html_easy_printing.rb +5 -5
- data/lib/wx/doc/gen/html/html_help_controller.rb +40 -52
- data/lib/wx/doc/gen/html/html_help_data.rb +2 -2
- data/lib/wx/doc/gen/html/html_help_window.rb +21 -27
- data/lib/wx/doc/gen/html/html_list_box.rb +6 -6
- data/lib/wx/doc/gen/html/html_printout.rb +1 -1
- data/lib/wx/doc/gen/html/html_window.rb +35 -31
- data/lib/wx/doc/gen/hyperlink_ctrl.rb +3 -3
- data/lib/wx/doc/gen/icon.rb +10 -10
- data/lib/wx/doc/gen/icon_location.rb +1 -1
- data/lib/wx/doc/gen/image.rb +46 -51
- data/lib/wx/doc/gen/image_list.rb +14 -24
- data/lib/wx/doc/gen/info_bar.rb +152 -0
- data/lib/wx/doc/gen/keyboard_state.rb +17 -17
- data/lib/wx/doc/gen/list_box.rb +19 -19
- data/lib/wx/doc/gen/list_ctrl.rb +58 -93
- data/lib/wx/doc/gen/list_event.rb +2 -2
- data/lib/wx/doc/gen/listbook.rb +1 -1
- data/lib/wx/doc/gen/locale.rb +15 -39
- data/lib/wx/doc/gen/log.rb +17 -67
- data/lib/wx/doc/gen/mdi_client_window.rb +1 -1
- data/lib/wx/doc/gen/mdi_frame.rb +8 -8
- data/lib/wx/doc/gen/media_ctrl.rb +15 -15
- data/lib/wx/doc/gen/media_event.rb +1 -1
- data/lib/wx/doc/gen/memory_dc.rb +3 -6
- data/lib/wx/doc/gen/menu.rb +15 -16
- data/lib/wx/doc/gen/menu_bar.rb +9 -26
- data/lib/wx/doc/gen/menu_item.rb +12 -12
- data/lib/wx/doc/gen/message_dialog.rb +6 -6
- data/lib/wx/doc/gen/mini_frame.rb +2 -2
- data/lib/wx/doc/gen/mouse_state.rb +50 -10
- data/lib/wx/doc/gen/non_owned_window.rb +2 -2
- data/lib/wx/doc/gen/notebook.rb +7 -7
- data/lib/wx/doc/gen/number_entry_dialog.rb +1 -1
- data/lib/wx/doc/gen/object.rb +1 -12
- data/lib/wx/doc/gen/palette.rb +12 -14
- data/lib/wx/doc/gen/panel.rb +4 -4
- data/lib/wx/doc/gen/pen.rb +25 -25
- data/lib/wx/doc/gen/pg/numeric_property_validator.rb +2 -2
- data/lib/wx/doc/gen/pg/pg_array_editor_dialog.rb +14 -14
- data/lib/wx/doc/gen/pg/pg_cell.rb +3 -6
- data/lib/wx/doc/gen/pg/pg_editor.rb +19 -19
- data/lib/wx/doc/gen/pg/pg_multi_button.rb +61 -86
- data/lib/wx/doc/gen/pg/pg_properties.rb +210 -263
- data/lib/wx/doc/gen/pg/pg_property.rb +161 -257
- data/lib/wx/doc/gen/pg/pg_validation_info.rb +2 -2
- data/lib/wx/doc/gen/pg/property_grid.rb +30 -30
- data/lib/wx/doc/gen/pg/property_grid_event.rb +7 -7
- data/lib/wx/doc/gen/pg/property_grid_interface.rb +45 -51
- data/lib/wx/doc/gen/pg/property_grid_manager.rb +39 -42
- data/lib/wx/doc/gen/pg/property_grid_page.rb +11 -20
- data/lib/wx/doc/gen/pg/property_grid_page_state.rb +10 -19
- data/lib/wx/doc/gen/picker_base.rb +5 -5
- data/lib/wx/doc/gen/platform_info.rb +173 -13
- data/lib/wx/doc/gen/popup_window.rb +2 -2
- data/lib/wx/doc/gen/progress_dialog.rb +2 -2
- data/lib/wx/doc/gen/property_sheet_dialog.rb +1 -1
- data/lib/wx/doc/gen/prt/preview_frame.rb +14 -1
- data/lib/wx/doc/gen/prt/print_data.rb +44 -44
- data/lib/wx/doc/gen/prt/printer.rb +22 -27
- data/lib/wx/doc/gen/query_layout_info_event.rb +4 -4
- data/lib/wx/doc/gen/radio_box.rb +9 -9
- data/lib/wx/doc/gen/radio_button.rb +5 -5
- data/lib/wx/doc/gen/rbn/ribbon_art_provider.rb +28 -28
- data/lib/wx/doc/gen/rbn/ribbon_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_bar_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_button_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_button_bar_event.rb +2 -2
- data/lib/wx/doc/gen/rbn/ribbon_control.rb +7 -7
- data/lib/wx/doc/gen/rbn/ribbon_gallery.rb +8 -14
- data/lib/wx/doc/gen/rbn/ribbon_gallery_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_page.rb +7 -7
- data/lib/wx/doc/gen/rbn/ribbon_panel.rb +12 -16
- data/lib/wx/doc/gen/rbn/ribbon_panel_event.rb +1 -1
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar.rb +13 -13
- data/lib/wx/doc/gen/rbn/ribbon_tool_bar_event.rb +2 -2
- data/lib/wx/doc/gen/rearrange_ctrl.rb +60 -0
- data/lib/wx/doc/gen/rearrange_list.rb +99 -0
- data/lib/wx/doc/gen/region.rb +26 -35
- data/lib/wx/doc/gen/region_iterator.rb +1 -1
- data/lib/wx/doc/gen/rtc/rich_text_box.rb +423 -0
- data/lib/wx/doc/gen/rtc/rich_text_buffer.rb +608 -1520
- data/lib/wx/doc/gen/rtc/rich_text_buffer_data_object.rb +37 -0
- data/lib/wx/doc/gen/rtc/rich_text_composite_object.rb +525 -0
- data/lib/wx/doc/gen/rtc/rich_text_ctrl.rb +435 -472
- data/lib/wx/doc/gen/rtc/rich_text_event.rb +9 -9
- data/lib/wx/doc/gen/rtc/rich_text_file_handler.rb +12 -12
- data/lib/wx/doc/gen/rtc/rich_text_formatting_dialog.rb +282 -0
- data/lib/wx/doc/gen/rtc/rich_text_header_footer_data.rb +14 -14
- data/lib/wx/doc/gen/rtc/rich_text_html_handler.rb +3 -16
- data/lib/wx/doc/gen/rtc/rich_text_image.rb +328 -0
- data/lib/wx/doc/gen/rtc/rich_text_object.rb +2849 -0
- data/lib/wx/doc/gen/rtc/rich_text_paragraph_layout_box.rb +1174 -0
- data/lib/wx/doc/gen/rtc/rich_text_printing.rb +17 -17
- data/lib/wx/doc/gen/rtc/rich_text_style_list_box.rb +305 -0
- data/lib/wx/doc/gen/rtc/rich_text_style_organiser_dialog.rb +183 -0
- data/lib/wx/doc/gen/rtc/rich_text_xml_handler.rb +2 -2
- data/lib/wx/doc/gen/rtc/symbol_picker_dialog.rb +32 -35
- data/lib/wx/doc/gen/sash_event.rb +5 -5
- data/lib/wx/doc/gen/sash_layout_window.rb +8 -8
- data/lib/wx/doc/gen/sash_window.rb +6 -6
- data/lib/wx/doc/gen/scroll_bar.rb +4 -4
- data/lib/wx/doc/gen/scrolled_canvas.rb +10 -16
- data/lib/wx/doc/gen/scrolled_control.rb +10 -16
- data/lib/wx/doc/gen/scrolled_window.rb +10 -16
- data/lib/wx/doc/gen/search_ctrl.rb +5 -5
- data/lib/wx/doc/gen/simplebook.rb +5 -5
- data/lib/wx/doc/gen/single_choice_dialog.rb +1 -2
- data/lib/wx/doc/gen/sizer.rb +40 -45
- data/lib/wx/doc/gen/sizer_item.rb +5 -5
- data/lib/wx/doc/gen/slider.rb +2 -2
- data/lib/wx/doc/gen/spin_button.rb +2 -2
- data/lib/wx/doc/gen/spin_ctrl.rb +3 -3
- data/lib/wx/doc/gen/spin_ctrl_double.rb +146 -0
- data/lib/wx/doc/gen/spin_double_event.rb +53 -0
- data/lib/wx/doc/gen/spin_event.rb +1 -1
- data/lib/wx/doc/gen/splitter_event.rb +1 -1
- data/lib/wx/doc/gen/splitter_window.rb +16 -12
- data/lib/wx/doc/gen/static_bitmap.rb +4 -4
- data/lib/wx/doc/gen/static_box.rb +5 -5
- data/lib/wx/doc/gen/static_line.rb +3 -3
- data/lib/wx/doc/gen/static_text.rb +3 -3
- data/lib/wx/doc/gen/status_bar.rb +39 -5
- data/lib/wx/doc/gen/stc/styled_text_ctrl.rb +145 -177
- data/lib/wx/doc/gen/stc/styled_text_event.rb +6 -6
- data/lib/wx/doc/gen/svg_file_dc.rb +5 -5
- data/lib/wx/doc/gen/system_options.rb +2 -2
- data/lib/wx/doc/gen/system_settings.rb +6 -6
- data/lib/wx/doc/gen/task_bar_icon.rb +7 -7
- data/lib/wx/doc/gen/task_bar_icon_event.rb +1 -1
- data/lib/wx/doc/gen/text_attr.rb +56 -54
- data/lib/wx/doc/gen/text_ctrl.rb +13 -37
- data/lib/wx/doc/gen/text_entry.rb +16 -16
- data/lib/wx/doc/gen/text_entry_dialog.rb +4 -4
- data/lib/wx/doc/gen/text_validator.rb +3 -8
- data/lib/wx/doc/gen/time_picker_ctrl.rb +5 -5
- data/lib/wx/doc/gen/timer.rb +5 -5
- data/lib/wx/doc/gen/tip_provider.rb +2 -2
- data/lib/wx/doc/gen/toggle_button.rb +4 -4
- data/lib/wx/doc/gen/tool_bar.rb +30 -37
- data/lib/wx/doc/gen/tool_tip.rb +1 -9
- data/lib/wx/doc/gen/toolbook.rb +6 -6
- data/lib/wx/doc/gen/top_level_window.rb +25 -95
- data/lib/wx/doc/gen/tree_ctrl.rb +20 -20
- data/lib/wx/doc/gen/tree_event.rb +2 -2
- data/lib/wx/doc/gen/treebook.rb +14 -14
- data/lib/wx/doc/gen/ui_action_simulator.rb +19 -18
- data/lib/wx/doc/gen/utils.rb +11 -11
- data/lib/wx/doc/gen/v_list_box.rb +9 -9
- data/lib/wx/doc/gen/v_scrolled_window.rb +7 -7
- data/lib/wx/doc/gen/validator.rb +3 -3
- data/lib/wx/doc/gen/variant.rb +22 -22
- data/lib/wx/doc/gen/window.rb +157 -122
- data/lib/wx/doc/gen/with_images.rb +1 -1
- data/lib/wx/doc/gen/wizard.rb +4 -4
- data/lib/wx/doc/gen/wizard_event.rb +3 -3
- data/lib/wx/doc/gen/wizard_page.rb +2 -2
- data/lib/wx/doc/gen/wizard_page_simple.rb +1 -1
- data/lib/wx/doc/gen/wrap_sizer.rb +65 -0
- data/lib/wx/doc/gen/xml_node.rb +10 -10
- data/lib/wx/doc/gen/xml_resource.rb +12 -12
- data/lib/wx/doc/graphics_context.rb +59 -39
- data/lib/wx/doc/grid/grid.rb +16 -1
- data/lib/wx/doc/hboxsizer.rb +33 -0
- data/lib/wx/doc/help_controller.rb +6 -0
- data/lib/wx/doc/html/html_help_controller.rb +6 -0
- data/lib/wx/doc/icon.rb +13 -5
- data/lib/wx/doc/id_helper.rb +6 -0
- data/lib/wx/doc/image.rb +12 -4
- data/lib/wx/doc/list_ctrl.rb +6 -0
- data/lib/wx/doc/log.rb +17 -0
- data/lib/wx/doc/memory_dc.rb +6 -0
- data/lib/wx/doc/mirror_dc.rb +6 -0
- data/lib/wx/doc/pen.rb +6 -0
- data/lib/wx/doc/pg/events.rb +6 -0
- data/lib/wx/doc/pg/pg_property.rb +17 -0
- data/lib/wx/doc/pg/pgeditor.rb +6 -0
- data/lib/wx/doc/pg/property_grid.rb +6 -0
- data/lib/wx/doc/pg/property_grid_interface.rb +6 -0
- data/lib/wx/doc/progress_dialog.rb +6 -0
- data/lib/wx/doc/prt/page_setup_dialog.rb +6 -0
- data/lib/wx/doc/prt/print_data.rb +6 -0
- data/lib/wx/doc/prt/print_dialog.rb +6 -0
- data/lib/wx/doc/prt/printer.rb +6 -0
- data/lib/wx/doc/prt/printer_dc.rb +6 -0
- data/lib/wx/doc/radio_box.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_bar.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_button_bar.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_gallery.rb +6 -0
- data/lib/wx/doc/rbn/ribbon_tool_bar.rb +6 -0
- data/lib/wx/doc/region_iterator.rb +6 -0
- data/lib/wx/doc/rtc/richtext_buffer.rb +28 -0
- data/lib/wx/doc/rtc/richtext_formatting_dialog.rb +68 -0
- data/lib/wx/doc/rtc/richtext_printing.rb +6 -0
- data/lib/wx/doc/rtc/richtext_style_sheet.rb +20 -0
- data/lib/wx/doc/scaled_dc.rb +6 -0
- data/lib/wx/doc/screen_dc.rb +6 -0
- data/lib/wx/doc/stock_objects.rb +6 -0
- data/lib/wx/doc/stream.rb +6 -0
- data/lib/wx/doc/svg_file_dc.rb +6 -0
- data/lib/wx/doc/system_settings.rb +6 -0
- data/lib/wx/doc/text_validator.rb +6 -0
- data/lib/wx/doc/textctrl.rb +89 -0
- data/lib/wx/doc/tree_event.rb +20 -0
- data/lib/wx/doc/treebook.rb +6 -0
- data/lib/wx/doc/v_list_box.rb +6 -0
- data/lib/wx/doc/variant.rb +6 -0
- data/lib/wx/doc/vboxsizer.rb +33 -0
- data/lib/wx/doc/window.rb +6 -0
- data/lib/wx/doc/window_disabler.rb +6 -0
- data/lib/wx/doc/xml_resource.rb +8 -0
- data/lib/wx/global_const.rb +4 -1
- data/lib/wx/grid/grid.rb +23 -3
- data/lib/wx/grid/keyword_defs.rb +8 -1
- data/lib/wx/grid/require.rb +4 -1
- data/lib/wx/grid.rb +4 -1
- data/lib/wx/helpers.rb +8 -1
- data/lib/wx/html/htmlhelpcontroller.rb +29 -3
- data/lib/wx/html/htmlwindow.rb +23 -12
- data/lib/wx/html/keyword_defs.rb +8 -1
- data/lib/wx/html/require.rb +4 -1
- data/lib/wx/html/simple_html_listbox.rb +3 -0
- data/lib/wx/html.rb +4 -1
- data/lib/wx/keyword_ctors.rb +22 -3
- data/lib/wx/keyword_defs.rb +55 -3
- data/lib/wx/pg/events.rb +4 -1
- data/lib/wx/pg/keyword_defs.rb +8 -1
- data/lib/wx/pg/pg_editor.rb +3 -0
- data/lib/wx/pg/pg_properties.rb +4 -1
- data/lib/wx/pg/pg_property.rb +18 -5
- data/lib/wx/pg/property_grid.rb +4 -1
- data/lib/wx/pg/property_grid_interface.rb +3 -0
- data/lib/wx/pg/require.rb +4 -1
- data/lib/wx/pg.rb +4 -1
- data/lib/wx/prt/keyword_defs.rb +8 -1
- data/lib/wx/prt/page_setup_dialog.rb +3 -0
- data/lib/wx/prt/previewframe.rb +5 -0
- data/lib/wx/prt/require.rb +4 -1
- data/lib/wx/prt.rb +4 -1
- data/lib/wx/rbn/events.rb +4 -1
- data/lib/wx/rbn/keyword_defs.rb +8 -1
- data/lib/wx/rbn/require.rb +5 -1
- data/lib/wx/rbn/ribbon_art_provider.rb +3 -1
- data/lib/wx/rbn/ribbon_bar.rb +3 -0
- data/lib/wx/rbn/ribbon_button_bar.rb +3 -0
- data/lib/wx/rbn/ribbon_control.rb +3 -0
- data/lib/wx/rbn/ribbon_gallery.rb +10 -0
- data/lib/wx/rbn/ribbon_page.rb +3 -0
- data/lib/wx/rbn/ribbon_panel.rb +3 -0
- data/lib/wx/rbn/ribbon_tool_bar.rb +3 -0
- data/lib/wx/rbn.rb +4 -1
- data/lib/wx/rtc/ext.rb +4 -1
- data/lib/wx/rtc/keyword_defs.rb +18 -7
- data/lib/wx/rtc/require.rb +8 -1
- data/lib/wx/rtc/richtext_buffer.rb +36 -0
- data/lib/wx/rtc/richtext_formatting_dialog.rb +88 -0
- data/lib/wx/rtc/richtext_style_organiser_dialog.rb +46 -0
- data/lib/wx/rtc/symbol_picker_dialog.rb +47 -0
- data/lib/wx/rtc.rb +5 -1
- data/lib/wx/stc/keyword_defs.rb +8 -1
- data/lib/wx/stc/require.rb +4 -1
- data/lib/wx/stc.rb +4 -1
- data/lib/wx/version.rb +5 -1
- data/lib/wx/wxruby/base.rb +4 -1
- data/lib/wx/wxruby/cmd/sampler.rb +4 -1
- data/lib/wx/wxruby/cmd/test.rb +4 -1
- data/lib/wx.rb +4 -1
- data/lib/wxruby_aui.so +0 -0
- data/lib/wxruby_core.so +0 -0
- data/lib/wxruby_grid.so +0 -0
- data/lib/wxruby_html.so +0 -0
- data/lib/wxruby_pg.so +0 -0
- data/lib/wxruby_prt.so +0 -0
- data/lib/wxruby_rbn.so +0 -0
- data/lib/wxruby_rtc.so +0 -0
- data/lib/wxruby_stc.so +0 -0
- data/rakelib/install.rb +4 -1
- data/rakelib/lib/config/cygwin.rb +4 -1
- data/rakelib/lib/config/linux.rb +4 -1
- data/rakelib/lib/config/macosx.rb +5 -2
- data/rakelib/lib/config/mingw.rb +4 -1
- data/rakelib/lib/config/netbsd.rb +4 -1
- data/rakelib/lib/config/unixish.rb +10 -7
- data/rakelib/lib/config.rb +7 -2
- data/rakelib/lib/ext/enum_chain.rb +4 -1
- data/rakelib/prepost.rake +4 -1
- data/rakelib/prepost.rb +4 -1
- data/samples/aui/aui.rb +8 -3
- data/samples/bigdemo/bigdemo.rb +9 -2
- data/samples/bigdemo/run.rb +9 -2
- data/samples/bigdemo/utils.rb +9 -1
- data/samples/calendar/calendar.rb +9 -4
- data/samples/caret/caret.rb +8 -3
- data/samples/controls/books.rb +8 -2
- data/samples/controls/controls.rb +33 -77
- data/samples/controls/get_item_sample.rb +8 -2
- data/samples/controls/htlbox.rb +10 -3
- data/samples/dialogs/dialogs.rb +9 -4
- data/samples/dialogs/wizard.rb +8 -3
- data/samples/dragdrop/dragdrop.rb +8 -3
- data/samples/drawing/bitmap.rb +8 -3
- data/samples/drawing/bitmap_image.rb +8 -3
- data/samples/drawing/graphics_drawing.rb +44 -33
- data/samples/drawing/image_prt.rb +8 -2
- data/samples/drawing/maths_images.rb +8 -3
- data/samples/drawing/rmagic_bitmap_image.rb +8 -3
- data/samples/etc/choice.rb +8 -3
- data/samples/etc/miniframe.rb +8 -3
- data/samples/etc/sash.rb +8 -3
- data/samples/etc/scrollwin.rb +8 -3
- data/samples/etc/system_settings.rb +8 -3
- data/samples/event/activation.rb +8 -3
- data/samples/event/event.rb +8 -3
- data/samples/event/threaded.rb +8 -3
- data/samples/event/update_ui_event.rb +8 -3
- data/samples/grid/grid.rb +9 -3
- data/samples/grid/gridtablebase.rb +8 -3
- data/samples/html/html.rb +8 -3
- data/samples/mdi/mdi.rb +8 -3
- data/samples/minimal/minimal.rb +8 -3
- data/samples/minimal/nothing.rb +8 -3
- data/samples/printing/printing.rb +8 -3
- data/samples/printing/printing2.rb +8 -2
- data/samples/propgrid/propgrid.rb +4 -1
- data/samples/propgrid/propgrid_minimal.rb +4 -2
- data/samples/propgrid/sample_props.rb +4 -1
- data/samples/ribbon/ribbon.rb +4 -1
- data/samples/sampler/editor.rb +4 -1
- data/samples/sampler/ext.rb +4 -1
- data/samples/sampler/sample.rb +13 -4
- data/samples/sampler/stc_editor.rb +4 -1
- data/samples/sampler/txt_editor.rb +4 -1
- data/samples/sampler.rb +11 -3
- data/samples/splash/splash.rb +4 -2
- data/samples/text/art/richtext/alignleft.xpm +24 -0
- data/samples/text/art/richtext/alignright.xpm +24 -0
- data/samples/text/art/richtext/bold.xpm +24 -0
- data/samples/text/art/richtext/centre.xpm +24 -0
- data/samples/text/art/richtext/copy.xpm +45 -0
- data/samples/text/art/richtext/cut.xpm +47 -0
- data/samples/text/art/richtext/font.xpm +25 -0
- data/samples/text/art/richtext/idea.xpm +47 -0
- data/samples/text/art/richtext/indentless.xpm +25 -0
- data/samples/text/art/richtext/indentmore.xpm +25 -0
- data/samples/text/art/richtext/italic.xpm +25 -0
- data/samples/text/art/richtext/open.xpm +58 -0
- data/samples/text/art/richtext/paste.xpm +47 -0
- data/samples/text/art/richtext/redo.xpm +59 -0
- data/samples/text/art/richtext/save.xpm +43 -0
- data/samples/text/art/richtext/smiley.xpm +42 -0
- data/samples/text/art/richtext/underline.xpm +25 -0
- data/samples/text/art/richtext/undo.xpm +59 -0
- data/samples/text/art/richtext/zebra.xpm +409 -0
- data/samples/text/rich_textctrl.rb +8 -3
- data/samples/text/richtext.rb +1824 -0
- data/samples/text/scintilla.rb +8 -3
- data/samples/text/textctrl.rb +21 -4
- data/samples/text/tn_richtext.png +0 -0
- data/samples/text/unicode.rb +9 -4
- data/samples/treectrl/treectrl.rb +10 -5
- data/samples/xrc/custom_xrc_sample.rb +8 -3
- data/samples/xrc/xrc_sample.rb +8 -3
- data/tests/art/test_art/bitmap/wxruby-128x128.png +0 -0
- data/tests/art/test_art/bitmap/wxruby-256x256.png +0 -0
- data/tests/art/test_art/bitmap/wxruby-64x64.png +0 -0
- data/tests/lib/item_container_tests.rb +3 -0
- data/tests/lib/text_entry_tests.rb +3 -0
- data/tests/lib/wxapp_runner.rb +3 -0
- data/tests/lib/wxframe_runner.rb +81 -3
- data/tests/test_app_event_filter.rb +3 -0
- data/tests/test_app_traits.rb +33 -0
- data/tests/test_art.rb +22 -0
- data/tests/test_art_provider.rb +3 -0
- data/tests/test_aui.rb +65 -0
- data/tests/test_basic.rb +5 -1
- data/tests/test_box_sizer.rb +5 -2
- data/tests/test_clipboard.rb +3 -0
- data/tests/test_config.rb +150 -0
- data/tests/test_dc.rb +3 -0
- data/tests/test_dialog.rb +3 -0
- data/tests/test_event_handling.rb +3 -0
- data/tests/test_events.rb +3 -0
- data/tests/test_ext_controls.rb +286 -3
- data/tests/test_file_dialog.rb +55 -0
- data/tests/test_font.rb +8 -5
- data/tests/test_gdi_object.rb +3 -0
- data/tests/test_geometry.rb +4 -0
- data/tests/test_grid_sizer.rb +7 -4
- data/tests/test_intl.rb +3 -0
- data/tests/test_item_data.rb +3 -0
- data/tests/test_list_ctrl.rb +4 -1
- data/tests/test_log.rb +63 -0
- data/tests/test_proof_check.rb +52 -0
- data/tests/test_richtext.rb +204 -0
- data/tests/test_std_controls.rb +45 -35
- data/tests/test_timer.rb +3 -0
- data/tests/test_variant.rb +3 -0
- data/tests/test_window.rb +10 -8
- data/tests/testapp.rb +4 -0
- data/tests/testapp_noframe.rb +4 -0
- metadata +76 -3
- data/lib/wx/doc/gen/html/html_help_frame.rb +0 -112
@@ -825,7 +825,7 @@ module Wx::RBN
|
|
825
825
|
# @param dc [Wx::DC] The device context to draw onto.
|
826
826
|
# @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
|
827
827
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be the size of the item's bitmap, expanded by gallery item padding values ({Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE}, and {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE}). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_gallery_background}.
|
828
|
-
# @param item [
|
828
|
+
# @param item [Integer] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
|
829
829
|
# @return [void]
|
830
830
|
def draw_gallery_item_background(dc, wnd, rect, item) end
|
831
831
|
|
@@ -848,7 +848,7 @@ module Wx::RBN
|
|
848
848
|
# @param dc [Wx::DC] The device context to draw onto.
|
849
849
|
# @param wnd [Wx::Window] The window which is being drawn onto.
|
850
850
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be a size previously returned by {Wx::RBN::RibbonArtProvider#get_button_bar_button_size}, and the rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_button_bar_background}.
|
851
|
-
# @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
|
851
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
|
852
852
|
# @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
|
853
853
|
# @param label [String] The label of the button.
|
854
854
|
# @param bitmap_large [Wx::Bitmap] The large bitmap of the button (or the large disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
|
@@ -875,7 +875,7 @@ module Wx::RBN
|
|
875
875
|
# @param wnd [Wx::Window] The window which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
|
876
876
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will at least the size returned by {Wx::RBN::RibbonArtProvider#get_tool_size}, and the height of it will be equal for all tools within the same group. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonArtProvider#draw_tool_group_background}.
|
877
877
|
# @param bitmap [Wx::Bitmap] The bitmap to use as the tool's foreground. If the tool is a hybrid or dropdown tool, then the foreground should also contain a standard dropdown button.
|
878
|
-
# @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
|
878
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
|
879
879
|
# @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
|
880
880
|
# @return [void]
|
881
881
|
def draw_tool(dc, wnd, rect, bitmap, kind, state) end
|
@@ -885,7 +885,7 @@ module Wx::RBN
|
|
885
885
|
# @param dc [Wx::DC] The device context to draw onto.
|
886
886
|
# @param wnd [Wx::RBN::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
|
887
887
|
# @param rect [Wx::Rect] The rectangle within which to draw.
|
888
|
-
# @param mode [RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
|
888
|
+
# @param mode [Wx::RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
|
889
889
|
# @return [void]
|
890
890
|
def draw_toggle_button(dc, wnd, rect, mode) end
|
891
891
|
|
@@ -990,8 +990,8 @@ module Wx::RBN
|
|
990
990
|
# true if a size exists for the button, false otherwise.
|
991
991
|
# @param dc [Wx::DC] A device context to use when one is required for size calculations.
|
992
992
|
# @param wnd [Wx::Window] The window onto which the button will eventually be drawn (which is normally a {Wx::RBN::RibbonButtonBar}, though this is not guaranteed).
|
993
|
-
# @param kind [RibbonButtonKind] The kind of button.
|
994
|
-
# @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
|
993
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button.
|
994
|
+
# @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
|
995
995
|
# @param label [String] The label of the button.
|
996
996
|
# @param text_min_width [Integer] The minimum width of the button label. Set this to 0 if it is not used.
|
997
997
|
# @param bitmap_size_large [Wx::Size] The size of all "large" bitmaps on the button bar.
|
@@ -999,7 +999,7 @@ module Wx::RBN
|
|
999
999
|
# @param button_size [Wx::Size] The size, in pixels, of the button.
|
1000
1000
|
# @param normal_region [Wx::Rect] The region of the button which constitutes the normal button.
|
1001
1001
|
# @param dropdown_region [Wx::Rect] The region of the button which constitutes the dropdown button.
|
1002
|
-
# @return [
|
1002
|
+
# @return [Boolean]
|
1003
1003
|
def get_button_bar_button_size(dc, wnd, kind, size, label, text_min_width, bitmap_size_large, bitmap_size_small, button_size, normal_region, dropdown_region) end
|
1004
1004
|
alias_method :button_bar_button_size, :get_button_bar_button_size
|
1005
1005
|
|
@@ -1009,8 +1009,8 @@ module Wx::RBN
|
|
1009
1009
|
# This function only works with single-line strings.
|
1010
1010
|
# @param dc [Wx::DC] A device context to use when one is required for size calculations.
|
1011
1011
|
# @param label [String] The string whose width shall be calculated.
|
1012
|
-
# @param kind [RibbonButtonKind] The kind of button.
|
1013
|
-
# @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
|
1012
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button.
|
1013
|
+
# @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
|
1014
1014
|
# @return [Integer]
|
1015
1015
|
def get_button_bar_button_text_width(dc, label, kind, size) end
|
1016
1016
|
alias_method :button_bar_button_text_width, :get_button_bar_button_text_width
|
@@ -1027,9 +1027,9 @@ module Wx::RBN
|
|
1027
1027
|
# @param dc [Wx::DC] A device context to use when one is required for size calculations.
|
1028
1028
|
# @param wnd [Wx::Window] The window onto which the tool will eventually be drawn.
|
1029
1029
|
# @param bitmap_size [Wx::Size] The size of the tool's foreground bitmap.
|
1030
|
-
# @param kind [RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
|
1031
|
-
# @param is_first [
|
1032
|
-
# @param is_last [
|
1030
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
|
1031
|
+
# @param is_first [Boolean] true if the tool is the first within its group. false otherwise.
|
1032
|
+
# @param is_last [Boolean] true if the tool is the last within its group. false otherwise.
|
1033
1033
|
# @param dropdown_region [Wx::Rect] For dropdown and hybrid tools, the region within the returned size which counts as the dropdown part.
|
1034
1034
|
# @return [Wx::Size]
|
1035
1035
|
def get_tool_size(dc, wnd, bitmap_size, kind, is_first, is_last, dropdown_region) end
|
@@ -1065,7 +1065,7 @@ module Wx::RBN
|
|
1065
1065
|
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
1066
1066
|
class RibbonMSWArtProvider < RibbonArtProvider
|
1067
1067
|
|
1068
|
-
# @param set_colour_scheme [
|
1068
|
+
# @param set_colour_scheme [Boolean]
|
1069
1069
|
# @return [Wx::RBN::RibbonMSWArtProvider]
|
1070
1070
|
def initialize(set_colour_scheme=true) end
|
1071
1071
|
|
@@ -1218,7 +1218,7 @@ module Wx::RBN
|
|
1218
1218
|
# @param dc [Wx::DC] The device context to draw onto.
|
1219
1219
|
# @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
|
1220
1220
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be the size of the item's bitmap, expanded by gallery item padding values ({Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE}, and {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE}). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_gallery_background}.
|
1221
|
-
# @param item [
|
1221
|
+
# @param item [Integer] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
|
1222
1222
|
# @return [void]
|
1223
1223
|
def draw_gallery_item_background(dc, wnd, rect, item) end
|
1224
1224
|
|
@@ -1241,7 +1241,7 @@ module Wx::RBN
|
|
1241
1241
|
# @param dc [Wx::DC] The device context to draw onto.
|
1242
1242
|
# @param wnd [Wx::Window] The window which is being drawn onto.
|
1243
1243
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be a size previously returned by {Wx::RBN::RibbonMSWArtProvider#get_button_bar_button_size}, and the rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_button_bar_background}.
|
1244
|
-
# @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
|
1244
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
|
1245
1245
|
# @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
|
1246
1246
|
# @param label [String] The label of the button.
|
1247
1247
|
# @param bitmap_large [Wx::Bitmap] The large bitmap of the button (or the large disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
|
@@ -1268,7 +1268,7 @@ module Wx::RBN
|
|
1268
1268
|
# @param wnd [Wx::Window] The window which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
|
1269
1269
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will at least the size returned by {Wx::RBN::RibbonMSWArtProvider#get_tool_size}, and the height of it will be equal for all tools within the same group. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonMSWArtProvider#draw_tool_group_background}.
|
1270
1270
|
# @param bitmap [Wx::Bitmap] The bitmap to use as the tool's foreground. If the tool is a hybrid or dropdown tool, then the foreground should also contain a standard dropdown button.
|
1271
|
-
# @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
|
1271
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
|
1272
1272
|
# @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
|
1273
1273
|
# @return [void]
|
1274
1274
|
def draw_tool(dc, wnd, rect, bitmap, kind, state) end
|
@@ -1278,7 +1278,7 @@ module Wx::RBN
|
|
1278
1278
|
# @param dc [Wx::DC] The device context to draw onto.
|
1279
1279
|
# @param wnd [Wx::RBN::RibbonBar] The window which is being drawn onto, which is always the panel whose background and chrome is being drawn. The panel label and other panel attributes can be obtained by querying this.
|
1280
1280
|
# @param rect [Wx::Rect] The rectangle within which to draw.
|
1281
|
-
# @param mode [RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
|
1281
|
+
# @param mode [Wx::RibbonDisplayMode] The {Wx::RBN::RibbonDisplayMode} which should be applied to display button
|
1282
1282
|
# @return [void]
|
1283
1283
|
def draw_toggle_button(dc, wnd, rect, mode) end
|
1284
1284
|
|
@@ -1374,8 +1374,8 @@ module Wx::RBN
|
|
1374
1374
|
# true if a size exists for the button, false otherwise.
|
1375
1375
|
# @param dc [Wx::DC] A device context to use when one is required for size calculations.
|
1376
1376
|
# @param wnd [Wx::Window] The window onto which the button will eventually be drawn (which is normally a {Wx::RBN::RibbonButtonBar}, though this is not guaranteed).
|
1377
|
-
# @param kind [RibbonButtonKind] The kind of button.
|
1378
|
-
# @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
|
1377
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button.
|
1378
|
+
# @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then false should be returned.
|
1379
1379
|
# @param label [String] The label of the button.
|
1380
1380
|
# @param text_min_width [Integer] The minimum width of the button label. Set this to 0 if it is not used.
|
1381
1381
|
# @param bitmap_size_large [Wx::Size] The size of all "large" bitmaps on the button bar.
|
@@ -1383,7 +1383,7 @@ module Wx::RBN
|
|
1383
1383
|
# @param button_size [Wx::Size] The size, in pixels, of the button.
|
1384
1384
|
# @param normal_region [Wx::Rect] The region of the button which constitutes the normal button.
|
1385
1385
|
# @param dropdown_region [Wx::Rect] The region of the button which constitutes the dropdown button.
|
1386
|
-
# @return [
|
1386
|
+
# @return [Boolean]
|
1387
1387
|
def get_button_bar_button_size(dc, wnd, kind, size, label, text_min_width, bitmap_size_large, bitmap_size_small, button_size, normal_region, dropdown_region) end
|
1388
1388
|
alias_method :button_bar_button_size, :get_button_bar_button_size
|
1389
1389
|
|
@@ -1393,8 +1393,8 @@ module Wx::RBN
|
|
1393
1393
|
# This function only works with single-line strings.
|
1394
1394
|
# @param dc [Wx::DC] A device context to use when one is required for size calculations.
|
1395
1395
|
# @param label [String] The string whose width shall be calculated.
|
1396
|
-
# @param kind [RibbonButtonKind] The kind of button.
|
1397
|
-
# @param size [RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
|
1396
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button.
|
1397
|
+
# @param size [Wx::RibbonButtonBarButtonState] The size-class to calculate the size for. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}. If the requested size-class is not applicable, then NULL should be returned.
|
1398
1398
|
# @return [Integer]
|
1399
1399
|
def get_button_bar_button_text_width(dc, label, kind, size) end
|
1400
1400
|
alias_method :button_bar_button_text_width, :get_button_bar_button_text_width
|
@@ -1411,9 +1411,9 @@ module Wx::RBN
|
|
1411
1411
|
# @param dc [Wx::DC] A device context to use when one is required for size calculations.
|
1412
1412
|
# @param wnd [Wx::Window] The window onto which the tool will eventually be drawn.
|
1413
1413
|
# @param bitmap_size [Wx::Size] The size of the tool's foreground bitmap.
|
1414
|
-
# @param kind [RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
|
1415
|
-
# @param is_first [
|
1416
|
-
# @param is_last [
|
1414
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool (normal, dropdown, or hybrid).
|
1415
|
+
# @param is_first [Boolean] true if the tool is the first within its group. false otherwise.
|
1416
|
+
# @param is_last [Boolean] true if the tool is the last within its group. false otherwise.
|
1417
1417
|
# @param dropdown_region [Wx::Rect] For dropdown and hybrid tools, the region within the returned size which counts as the dropdown part.
|
1418
1418
|
# @return [Wx::Size]
|
1419
1419
|
def get_tool_size(dc, wnd, bitmap_size, kind, is_first, is_last, dropdown_region) end
|
@@ -1605,7 +1605,7 @@ module Wx::RBN
|
|
1605
1605
|
# @param dc [Wx::DC] The device context to draw onto.
|
1606
1606
|
# @param wnd [Wx::RBN::RibbonGallery] The window which is being drawn onto, which is always the gallery which contains the item being drawn.
|
1607
1607
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be the size of the item's bitmap, expanded by gallery item padding values ({Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE}, {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE}, and {Wx::RBN::RibbonArtSetting::RIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE}). The drawing rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_gallery_background}.
|
1608
|
-
# @param item [
|
1608
|
+
# @param item [Integer] The item whose background is being painted. Typically the background will vary if the item is hovered, active, or selected; {Wx::RBN::RibbonGallery#get_selection}, {Wx::RBN::RibbonGallery#get_active_item}, and {Wx::RBN::RibbonGallery#get_hovered_item} can be called to test if the given item is in one of these states.
|
1609
1609
|
# @return [void]
|
1610
1610
|
def draw_gallery_item_background(dc, wnd, rect, item) end
|
1611
1611
|
|
@@ -1620,7 +1620,7 @@ module Wx::RBN
|
|
1620
1620
|
# @param dc [Wx::DC] The device context to draw onto.
|
1621
1621
|
# @param wnd [Wx::Window] The window which is being drawn onto.
|
1622
1622
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will be a size previously returned by {Wx::RBN::RibbonAUIArtProvider#get_button_bar_button_size}, and the rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_button_bar_background}.
|
1623
|
-
# @param kind [RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
|
1623
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button to draw (normal, dropdown or hybrid).
|
1624
1624
|
# @param state [Integer] Combination of a size flag and state flags from the {Wx::RBN::RibbonButtonBarButtonState} enumeration.
|
1625
1625
|
# @param label [String] The label of the button.
|
1626
1626
|
# @param bitmap_large [Wx::Bitmap] The large bitmap of the button (or the large disabled bitmap when {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_DISABLED} is set in state).
|
@@ -1647,7 +1647,7 @@ module Wx::RBN
|
|
1647
1647
|
# @param wnd [Wx::Window] The window which is being drawn onto. In most cases this will be a {Wx::RBN::RibbonToolBar}, but it doesn't have to be.
|
1648
1648
|
# @param rect [Wx::Rect] The rectangle within which to draw. The size of this rectangle will at least the size returned by {Wx::RBN::RibbonAUIArtProvider#get_tool_size}, and the height of it will be equal for all tools within the same group. The rectangle will be entirely within a rectangle on the same device context previously painted with {Wx::RBN::RibbonAUIArtProvider#draw_tool_group_background}.
|
1649
1649
|
# @param bitmap [Wx::Bitmap] The bitmap to use as the tool's foreground. If the tool is a hybrid or dropdown tool, then the foreground should also contain a standard dropdown button.
|
1650
|
-
# @param kind [RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
|
1650
|
+
# @param kind [Wx::RibbonButtonKind] The kind of tool to draw (normal, dropdown, or hybrid).
|
1651
1651
|
# @param state [Integer] A combination of {Wx::RibbonToolBarToolState} flags giving the state of the tool and it's relative position within a tool group.
|
1652
1652
|
# @return [void]
|
1653
1653
|
def draw_tool(dc, wnd, rect, bitmap, kind, state) end
|
@@ -89,7 +89,7 @@ module Wx::RBN
|
|
89
89
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
90
90
|
# @param size [Array(Integer, Integer), Wx::Size]
|
91
91
|
# @param style [Integer]
|
92
|
-
# @return [
|
92
|
+
# @return [Boolean]
|
93
93
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::RBN::RibbonBarOption::RIBBON_BAR_DEFAULT_STYLE) end
|
94
94
|
|
95
95
|
# Set the margin widths (in pixels) on the left and right sides of the tab bar region of the ribbon bar.
|
@@ -112,12 +112,12 @@ module Wx::RBN
|
|
112
112
|
# Set the active page by index, without triggering any events.
|
113
113
|
# true if the specified page is now active, false if it could not be activated (for example because the page index is invalid).
|
114
114
|
# @param page [Integer] The zero-based index of the page to activate.
|
115
|
-
# @return [
|
115
|
+
# @return [Boolean]
|
116
116
|
# @overload set_active_page(page)
|
117
117
|
# Set the active page, without triggering any events.
|
118
118
|
# true if the specified page is now active, false if it could not be activated (for example because the given page is not a child of the ribbon bar).
|
119
119
|
# @param page [Wx::RBN::RibbonPage] The page to activate.
|
120
|
-
# @return [
|
120
|
+
# @return [Boolean]
|
121
121
|
def set_active_page(*args) end
|
122
122
|
alias_method :active_page=, :set_active_page
|
123
123
|
|
@@ -141,7 +141,7 @@ module Wx::RBN
|
|
141
141
|
|
142
142
|
# Dismiss the expanded panel of the currently active page.
|
143
143
|
# Calls and returns the value from {Wx::RBN::RibbonPage#dismiss_expanded_panel} for the currently active page, or false if there is no active page.
|
144
|
-
# @return [
|
144
|
+
# @return [Boolean]
|
145
145
|
def dismiss_expanded_panel; end
|
146
146
|
|
147
147
|
# Returns the number for a given ribbon bar page.
|
@@ -164,14 +164,14 @@ module Wx::RBN
|
|
164
164
|
# Indicates whether the tab for the given page is shown to the user or not.
|
165
165
|
# By default all page tabs are shown.
|
166
166
|
# @param page [Integer]
|
167
|
-
# @return [
|
167
|
+
# @return [Boolean]
|
168
168
|
def is_page_shown(page) end
|
169
169
|
alias_method :page_shown?, :is_page_shown
|
170
170
|
|
171
171
|
# Show or hide the tab for a given page.
|
172
172
|
# After showing or hiding a tab, you need to call {Wx::RBN::RibbonBar#realize}. If you hide the tab for the currently active page (GetActivePage) then you should call SetActivePage to activate a different page.
|
173
173
|
# @param page [Integer]
|
174
|
-
# @param show_tab [
|
174
|
+
# @param show_tab [Boolean]
|
175
175
|
# @return [void]
|
176
176
|
def show_page(page, show_tab=true) end
|
177
177
|
|
@@ -185,14 +185,14 @@ module Wx::RBN
|
|
185
185
|
#
|
186
186
|
# @see Wx::RBN::RibbonBar#add_page_highlight
|
187
187
|
# @param page [Integer]
|
188
|
-
# @return [
|
188
|
+
# @return [Boolean]
|
189
189
|
def is_page_highlighted(page) end
|
190
190
|
alias_method :page_highlighted?, :is_page_highlighted
|
191
191
|
|
192
192
|
# Highlight the specified tab.
|
193
193
|
# Highlighted tabs have a colour between that of the active tab and a tab over which the mouse is hovering. This can be used to make a tab (usually temporarily) more noticeable to the user.
|
194
194
|
# @param page [Integer]
|
195
|
-
# @param highlight [
|
195
|
+
# @param highlight [Boolean]
|
196
196
|
# @return [void]
|
197
197
|
def add_page_highlight(page, highlight=true) end
|
198
198
|
|
@@ -205,13 +205,13 @@ module Wx::RBN
|
|
205
205
|
|
206
206
|
# @overload show_panels(mode)
|
207
207
|
# Shows or hide the panel area of the ribbon bar according to the given display mode.
|
208
|
-
# @param mode [RibbonDisplayMode]
|
208
|
+
# @param mode [Wx::RibbonDisplayMode]
|
209
209
|
# @return [void]
|
210
210
|
# @overload show_panels(show=true)
|
211
211
|
# Shows or hides the panel area of the ribbon bar.
|
212
212
|
# If the panel area is hidden, then only the tab of the ribbon bar will be shown. This is useful for giving the user more screen space to work with when he/she doesn't need to see the ribbon's options.
|
213
213
|
# If the panel is currently shown, this method pins it, use the other overload of this method to specify the exact panel display mode to avoid it.
|
214
|
-
# @param show [
|
214
|
+
# @param show [Boolean]
|
215
215
|
# @return [void]
|
216
216
|
def show_panels(*args) end
|
217
217
|
|
@@ -223,20 +223,20 @@ module Wx::RBN
|
|
223
223
|
# Indicates whether the panel area of the ribbon bar is shown.
|
224
224
|
#
|
225
225
|
# @see Wx::RBN::RibbonBar#show_panels
|
226
|
-
# @return [
|
226
|
+
# @return [Boolean]
|
227
227
|
def are_panels_shown; end
|
228
228
|
|
229
229
|
# Returns the current display mode of the panel area.
|
230
230
|
#
|
231
231
|
# @see Wx::RBN::RibbonBar#show_panels
|
232
|
-
# @return [RibbonDisplayMode]
|
232
|
+
# @return [Wx::RibbonDisplayMode]
|
233
233
|
def get_display_mode; end
|
234
234
|
alias_method :display_mode, :get_display_mode
|
235
235
|
|
236
236
|
# Perform initial layout and size calculations of the bar and its children.
|
237
237
|
# This must be called after all of the bar's children have been created (and their children created, etc.) - if it is not, then windows may not be laid out or sized correctly.
|
238
238
|
# Also calls {Wx::RBN::RibbonPage#realize} on each child page.
|
239
|
-
# @return [
|
239
|
+
# @return [Boolean]
|
240
240
|
def realize; end
|
241
241
|
|
242
242
|
end # RibbonBar
|
@@ -17,7 +17,7 @@ module Wx::RBN
|
|
17
17
|
class RibbonBarEvent < NotifyEvent
|
18
18
|
|
19
19
|
# Constructor.
|
20
|
-
# @param command_type [Wx::
|
20
|
+
# @param command_type [Wx::CommandLinkButton::EventType]
|
21
21
|
# @param win_id [Integer]
|
22
22
|
# @param page [Wx::RBN::RibbonPage]
|
23
23
|
# @return [Wx::RBN::RibbonBarEvent]
|
@@ -124,7 +124,7 @@ module Wx::RBN
|
|
124
124
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
125
125
|
# @param size [Array(Integer, Integer), Wx::Size]
|
126
126
|
# @param style [Integer]
|
127
|
-
# @return [
|
127
|
+
# @return [Boolean]
|
128
128
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0) end
|
129
129
|
|
130
130
|
# @overload add_button(button_id, label, bitmap, help_string, kind=Wx::RBN::RibbonButtonKind::RIBBON_BUTTON_NORMAL)
|
@@ -133,7 +133,7 @@ module Wx::RBN
|
|
133
133
|
# @param label [String]
|
134
134
|
# @param bitmap [Wx::Bitmap]
|
135
135
|
# @param help_string [String]
|
136
|
-
# @param kind [RibbonButtonKind]
|
136
|
+
# @param kind [Wx::RibbonButtonKind]
|
137
137
|
# @return [Integer]
|
138
138
|
# @overload add_button(button_id, label, bitmap, bitmap_small=Wx::NULL_BITMAP, bitmap_disabled=Wx::NULL_BITMAP, bitmap_small_disabled=Wx::NULL_BITMAP, kind=Wx::RBN::RibbonButtonKind::RIBBON_BUTTON_NORMAL, help_string=(''))
|
139
139
|
# Add a button to the button bar.
|
@@ -149,7 +149,7 @@ module Wx::RBN
|
|
149
149
|
# @param bitmap_small [Wx::Bitmap] Small bitmap of the new button. If left as null, then a small bitmap will be automatically generated. Must be the same size as all other small bitmaps used on the button bar.
|
150
150
|
# @param bitmap_disabled [Wx::Bitmap] Large bitmap of the new button when it is disabled. If left as null, then a bitmap will be automatically generated from bitmap.
|
151
151
|
# @param bitmap_small_disabled [Wx::Bitmap] Small bitmap of the new button when it is disabled. If left as null, then a bitmap will be automatically generated from bitmap_small.
|
152
|
-
# @param kind [RibbonButtonKind] The kind of button to add.
|
152
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button to add.
|
153
153
|
# @param help_string [String] The UI help string to associate with the new button.
|
154
154
|
# @return [Integer]
|
155
155
|
def add_button(*args) end
|
@@ -193,7 +193,7 @@ module Wx::RBN
|
|
193
193
|
# @param label [String]
|
194
194
|
# @param bitmap [Wx::Bitmap]
|
195
195
|
# @param help_string [String]
|
196
|
-
# @param kind [RibbonButtonKind]
|
196
|
+
# @param kind [Wx::RibbonButtonKind]
|
197
197
|
# @return [Integer]
|
198
198
|
# @overload insert_button(pos, button_id, label, bitmap, bitmap_small=Wx::NULL_BITMAP, bitmap_disabled=Wx::NULL_BITMAP, bitmap_small_disabled=Wx::NULL_BITMAP, kind=Wx::RBN::RibbonButtonKind::RIBBON_BUTTON_NORMAL, help_string=(''))
|
199
199
|
# Insert a button to the button bar at the given position.
|
@@ -212,7 +212,7 @@ module Wx::RBN
|
|
212
212
|
# @param bitmap_small [Wx::Bitmap] Small bitmap of the new button. If left as null, then a small bitmap will be automatically generated. Must be the same size as all other small bitmaps used on the button bar.
|
213
213
|
# @param bitmap_disabled [Wx::Bitmap] Large bitmap of the new button when it is disabled. If left as null, then a bitmap will be automatically generated from bitmap.
|
214
214
|
# @param bitmap_small_disabled [Wx::Bitmap] Small bitmap of the new button when it is disabled. If left as null, then a bitmap will be automatically generated from bitmap_small.
|
215
|
-
# @param kind [RibbonButtonKind] The kind of button to add.
|
215
|
+
# @param kind [Wx::RibbonButtonKind] The kind of button to add.
|
216
216
|
# @param help_string [String] The UI help string to associate with the new button.
|
217
217
|
# @return [Integer]
|
218
218
|
def insert_button(*args) end
|
@@ -296,7 +296,7 @@ module Wx::RBN
|
|
296
296
|
|
297
297
|
# Calculate button layouts and positions.
|
298
298
|
# Must be called after buttons are added to the button bar, as otherwise the newly added buttons will not be displayed. In normal situations, it will be called automatically when {Wx::RBN::RibbonBar#realize} is called.
|
299
|
-
# @return [
|
299
|
+
# @return [Boolean]
|
300
300
|
def realize; end
|
301
301
|
|
302
302
|
# Delete all buttons from the button bar.
|
@@ -309,18 +309,18 @@ module Wx::RBN
|
|
309
309
|
# The corresponding button is deleted by this function, so any pointers to it previously obtained by {Wx::RBN::RibbonButtonBar#get_item} or {Wx::RBN::RibbonButtonBar#get_item_by_id} become invalid.
|
310
310
|
# @see Wx::RBN::RibbonButtonBar#clear_buttons
|
311
311
|
# @param button_id [Integer]
|
312
|
-
# @return [
|
312
|
+
# @return [Boolean]
|
313
313
|
def delete_button(button_id) end
|
314
314
|
|
315
315
|
# Enable or disable a single button on the bar.
|
316
316
|
# @param button_id [Integer] ID of the button to enable or disable.
|
317
|
-
# @param enable [
|
317
|
+
# @param enable [Boolean] true to enable the button, false to disable it.
|
318
318
|
# @return [void]
|
319
319
|
def enable_button(button_id, enable=true) end
|
320
320
|
|
321
321
|
# Set a toggle button to the checked or unchecked state.
|
322
322
|
# @param button_id [Integer] ID of the toggle button to manipulate.
|
323
|
-
# @param checked [
|
323
|
+
# @param checked [Boolean] true to set the button to the toggled/pressed/checked state, false to set it to the untoggled/unpressed/unchecked state.
|
324
324
|
# @return [void]
|
325
325
|
def toggle_button(button_id, checked) end
|
326
326
|
|
@@ -365,14 +365,14 @@ module Wx::RBN
|
|
365
365
|
# Sets the minimum size class of a ribbon button.
|
366
366
|
# You have to call {Wx::RBN::RibbonButtonBar#realize} after calling this function to apply the given minimum size.
|
367
367
|
# @param button_id [Integer] ID of the button to manipulate.
|
368
|
-
# @param min_size_class [RibbonButtonBarButtonState] The minimum size-class of the button. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}.
|
368
|
+
# @param min_size_class [Wx::RibbonButtonBarButtonState] The minimum size-class of the button. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}.
|
369
369
|
# @return [void]
|
370
370
|
def set_button_min_size_class(button_id, min_size_class) end
|
371
371
|
|
372
372
|
# Sets the maximum size class of a ribbon button.
|
373
373
|
# You have to call {Wx::RBN::RibbonButtonBar#realize} after calling this function to apply the given maximum size.
|
374
374
|
# @param button_id [Integer] ID of the button to manipulate.
|
375
|
-
# @param max_size_class [RibbonButtonBarButtonState] The maximum size-class of the button. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}.
|
375
|
+
# @param max_size_class [Wx::RibbonButtonBarButtonState] The maximum size-class of the button. Buttons on a button bar can have three distinct sizes: {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_SMALL}, {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_MEDIUM}, and {Wx::RBN::RibbonButtonBarButtonState::RIBBON_BUTTONBAR_BUTTON_LARGE}.
|
376
376
|
# @return [void]
|
377
377
|
def set_button_max_size_class(button_id, max_size_class) end
|
378
378
|
|
@@ -390,14 +390,14 @@ module Wx::RBN
|
|
390
390
|
|
391
391
|
# Indicates whether tooltips are shown for disabled buttons.
|
392
392
|
# By default they are not shown.
|
393
|
-
# @param show [
|
393
|
+
# @param show [Boolean]
|
394
394
|
# @return [void]
|
395
395
|
def set_show_tool_tips_for_disabled(show) end
|
396
396
|
alias_method :show_tool_tips_for_disabled=, :set_show_tool_tips_for_disabled
|
397
397
|
|
398
398
|
# Sets whether tooltips should be shown for disabled buttons or not.
|
399
399
|
# You may wish to show it to explain why a button is disabled or what it normally does when enabled.
|
400
|
-
# @return [
|
400
|
+
# @return [Boolean]
|
401
401
|
def get_show_tool_tips_for_disabled; end
|
402
402
|
alias_method :show_tool_tips_for_disabled, :get_show_tool_tips_for_disabled
|
403
403
|
|
@@ -18,7 +18,7 @@ module Wx::RBN
|
|
18
18
|
class RibbonButtonBarEvent < CommandEvent
|
19
19
|
|
20
20
|
# Constructor.
|
21
|
-
# @param command_type [Wx::
|
21
|
+
# @param command_type [Wx::CommandLinkButton::EventType]
|
22
22
|
# @param win_id [Integer]
|
23
23
|
# @param bar [Wx::RBN::RibbonButtonBar]
|
24
24
|
# @param button [Integer]
|
@@ -49,7 +49,7 @@ module Wx::RBN
|
|
49
49
|
|
50
50
|
# Display a popup menu as a result of this (dropdown clicked) event.
|
51
51
|
# @param menu [Wx::Menu]
|
52
|
-
# @return [
|
52
|
+
# @return [Boolean]
|
53
53
|
def popup_menu(menu) end
|
54
54
|
|
55
55
|
end # RibbonButtonBarEvent
|
@@ -50,7 +50,7 @@ module Wx::RBN
|
|
50
50
|
# @see Wx::RBN::RibbonControl#get_next_smaller_size
|
51
51
|
#
|
52
52
|
# @see Wx::RBN::RibbonControl#get_next_larger_size
|
53
|
-
# @return [
|
53
|
+
# @return [Boolean]
|
54
54
|
def is_sizing_continuous; end
|
55
55
|
alias_method :sizing_continuous?, :is_sizing_continuous
|
56
56
|
|
@@ -58,7 +58,7 @@ module Wx::RBN
|
|
58
58
|
# If sizing is not continuous, then return a suitable size for the control which is smaller than the current size.
|
59
59
|
# The current size if there is no smaller size, otherwise a suitable size which is smaller in the given direction(s), and the same as the current size in the other direction (if any).
|
60
60
|
# @see Wx::RBN::RibbonControl#is_sizing_continuous
|
61
|
-
# @param direction [Orientation] The direction(s) in which the size should reduce.
|
61
|
+
# @param direction [Wx::Orientation] The direction(s) in which the size should reduce.
|
62
62
|
# @return [Wx::Size]
|
63
63
|
# @overload get_next_smaller_size(direction, relative_to)
|
64
64
|
# If sizing is not continuous, then return a suitable size for the control which is smaller than the given size.
|
@@ -66,7 +66,7 @@ module Wx::RBN
|
|
66
66
|
# @see Wx::RBN::RibbonControl#is_sizing_continuous
|
67
67
|
#
|
68
68
|
# @see Wx::RBN::RibbonControl#do_get_next_smaller_size
|
69
|
-
# @param direction [Orientation] The direction(s) in which the size should reduce.
|
69
|
+
# @param direction [Wx::Orientation] The direction(s) in which the size should reduce.
|
70
70
|
# @param relative_to [Wx::Size] The size for which a smaller size should be found.
|
71
71
|
# @return [Wx::Size]
|
72
72
|
def get_next_smaller_size(*args) end
|
@@ -76,7 +76,7 @@ module Wx::RBN
|
|
76
76
|
# If sizing is not continuous, then return a suitable size for the control which is larger than the current size.
|
77
77
|
# The current size if there is no larger size, otherwise a suitable size which is larger in the given direction(s), and the same as the current size in the other direction (if any).
|
78
78
|
# @see Wx::RBN::RibbonControl#is_sizing_continuous
|
79
|
-
# @param direction [Orientation] The direction(s) in which the size should increase.
|
79
|
+
# @param direction [Wx::Orientation] The direction(s) in which the size should increase.
|
80
80
|
# @return [Wx::Size]
|
81
81
|
# @overload get_next_larger_size(direction, relative_to)
|
82
82
|
# If sizing is not continuous, then return a suitable size for the control which is larger than the given size.
|
@@ -84,18 +84,18 @@ module Wx::RBN
|
|
84
84
|
# @see Wx::RBN::RibbonControl#is_sizing_continuous
|
85
85
|
#
|
86
86
|
# @see Wx::RBN::RibbonControl#do_get_next_larger_size
|
87
|
-
# @param direction [Orientation] The direction(s) in which the size should increase.
|
87
|
+
# @param direction [Wx::Orientation] The direction(s) in which the size should increase.
|
88
88
|
# @param relative_to [Wx::Size] The size for which a larger size should be found.
|
89
89
|
# @return [Wx::Size]
|
90
90
|
def get_next_larger_size(*args) end
|
91
91
|
alias_method :next_larger_size, :get_next_larger_size
|
92
92
|
|
93
93
|
# Perform initial size and layout calculations after children have been added, and/or realize children.
|
94
|
-
# @return [
|
94
|
+
# @return [Boolean]
|
95
95
|
def realize; end
|
96
96
|
|
97
97
|
# Alias for {Wx::RBN::RibbonControl#realize}.
|
98
|
-
# @return [
|
98
|
+
# @return [Boolean]
|
99
99
|
def realise; end
|
100
100
|
|
101
101
|
# Get the first ancestor which is a {Wx::RBN::RibbonBar} (or derived) or NULL if not having such parent.
|
@@ -89,7 +89,7 @@ module Wx::RBN
|
|
89
89
|
# @param pos [Array(Integer, Integer), Wx::Point]
|
90
90
|
# @param size [Array(Integer, Integer), Wx::Size]
|
91
91
|
# @param style [Integer]
|
92
|
-
# @return [
|
92
|
+
# @return [Boolean]
|
93
93
|
def create(parent, id=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=0) end
|
94
94
|
|
95
95
|
# Remove all items from the gallery.
|
@@ -97,7 +97,7 @@ module Wx::RBN
|
|
97
97
|
def clear; end
|
98
98
|
|
99
99
|
# Query if the gallery has no items in it.
|
100
|
-
# @return [
|
100
|
+
# @return [Boolean]
|
101
101
|
def is_empty; end
|
102
102
|
alias_method :empty?, :is_empty
|
103
103
|
|
@@ -123,12 +123,6 @@ module Wx::RBN
|
|
123
123
|
# @param id [Integer] ID number to associate with the item. Not currently used for anything important.
|
124
124
|
# @param clientData [Object] An opaque pointer to associate with the item.
|
125
125
|
# @return [Integer]
|
126
|
-
# @overload append(bitmap, id, clientData)
|
127
|
-
# Add an item to the gallery (with complex client data)
|
128
|
-
# @param bitmap [Wx::Bitmap] The bitmap to display for the item. Note that all items must have equally sized bitmaps.
|
129
|
-
# @param id [Integer] ID number to associate with the item. Not currently used for anything important.
|
130
|
-
# @param clientData [Wx::ClientData] An object which contains data to associate with the item. The item takes ownership of this pointer, and will delete it when the item client data is changed to something else, or when the item is destroyed.
|
131
|
-
# @return [Integer]
|
132
126
|
def append(*args) end
|
133
127
|
|
134
128
|
# Set the client data associated with a gallery item.
|
@@ -169,36 +163,36 @@ module Wx::RBN
|
|
169
163
|
alias_method :active_item, :get_active_item
|
170
164
|
|
171
165
|
# Get the state of the scroll up button.
|
172
|
-
# @return [RibbonGalleryButtonState]
|
166
|
+
# @return [Wx::RibbonGalleryButtonState]
|
173
167
|
def get_up_button_state; end
|
174
168
|
alias_method :up_button_state, :get_up_button_state
|
175
169
|
|
176
170
|
# Get the state of the scroll down button.
|
177
|
-
# @return [RibbonGalleryButtonState]
|
171
|
+
# @return [Wx::RibbonGalleryButtonState]
|
178
172
|
def get_down_button_state; end
|
179
173
|
alias_method :down_button_state, :get_down_button_state
|
180
174
|
|
181
175
|
# Get the state of the "extension" button.
|
182
|
-
# @return [RibbonGalleryButtonState]
|
176
|
+
# @return [Wx::RibbonGalleryButtonState]
|
183
177
|
def get_extension_button_state; end
|
184
178
|
alias_method :extension_button_state, :get_extension_button_state
|
185
179
|
|
186
180
|
# Query is the mouse is currently hovered over the gallery.
|
187
181
|
# true if the cursor is within the bounds of the gallery (not just hovering over an item), false otherwise.
|
188
|
-
# @return [
|
182
|
+
# @return [Boolean]
|
189
183
|
def is_hovered; end
|
190
184
|
alias_method :hovered?, :is_hovered
|
191
185
|
|
192
186
|
# Scroll the gallery contents by some amount.
|
193
187
|
# true if the gallery scrolled at least one pixel in the given direction, false if it did not scroll.
|
194
188
|
# @param lines [Integer] Positive values scroll toward the end of the gallery, while negative values scroll toward the start.
|
195
|
-
# @return [
|
189
|
+
# @return [Boolean]
|
196
190
|
def scroll_lines(lines) end
|
197
191
|
|
198
192
|
# Scroll the gallery contents by some fine-grained amount.
|
199
193
|
# true if the gallery scrolled at least one pixel in the given direction, false if it did not scroll.
|
200
194
|
# @param pixels [Integer] Positive values scroll toward the end of the gallery, while negative values scroll toward the start.
|
201
|
-
# @return [
|
195
|
+
# @return [Boolean]
|
202
196
|
def scroll_pixels(pixels) end
|
203
197
|
|
204
198
|
# Scroll the gallery to ensure that the given item is visible.
|
@@ -16,7 +16,7 @@ module Wx::RBN
|
|
16
16
|
class RibbonGalleryEvent < CommandEvent
|
17
17
|
|
18
18
|
# Constructor.
|
19
|
-
# @param command_type [Wx::
|
19
|
+
# @param command_type [Wx::CommandLinkButton::EventType]
|
20
20
|
# @param win_id [Integer]
|
21
21
|
# @param gallery [Wx::RBN::RibbonGallery]
|
22
22
|
# @param item [Integer]
|