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
@@ -0,0 +1,755 @@
|
|
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
|
+
# {Wx::HeaderCtrl} is the control containing the column headings which is usually used for display of tabular data.
|
10
|
+
# It is used as part of {Wx::GRID::Grid}, in generic version {Wx::DataViewCtrl} and report view of {Wx::ListCtrl} but can be also used independently. In general this class is meant to be used as part of another control which already stores the column information somewhere as it can't be used directly: instead you need to inherit from it and implement the {Wx::HeaderCtrl#get_column} method to provide column information. See {Wx::HeaderCtrlSimple} for a concrete control class which can be used directly.
|
11
|
+
# In addition to labeling the columns, the control has the following features:
|
12
|
+
#
|
13
|
+
# - Column reordering support, either by explicitly configuring the columns order and calling {Wx::HeaderCtrl#set_columns_order} or by dragging the columns interactively (if enabled).
|
14
|
+
# - Display of the icons in the header: this is often used to display a sort or reverse sort indicator when the column header is clicked.
|
15
|
+
#
|
16
|
+
# Notice that this control itself doesn't do anything other than displaying the column headers. In particular column reordering and sorting must still be supported by the associated control displaying the real data under the header. Also remember to call {Wx::HeaderCtrl#scroll_window} method of the control if the associated data display window has a horizontal scrollbar, otherwise the headers wouldn't align with the data when the window is scrolled.
|
17
|
+
# This control is implemented using the native header control under MSW systems and a generic implementation elsewhere.
|
18
|
+
#
|
19
|
+
# == Future Improvements
|
20
|
+
#
|
21
|
+
# Some features are supported by the native MSW control and so could be easily implemented in this version of {Wx::HeaderCtrl} but need to be implemented in the generic version as well to be really useful. Please let us know if you need or, better, plan to work on implementing, any of them:
|
22
|
+
#
|
23
|
+
# - Displaying bitmaps instead of or together with the text
|
24
|
+
# - Custom drawn headers
|
25
|
+
# - Filters associated with a column.
|
26
|
+
# === Styles
|
27
|
+
#
|
28
|
+
# This class supports the following styles:
|
29
|
+
#
|
30
|
+
# - {Wx::HD_ALLOW_REORDER}: If this style is specified (it is by default), the user can reorder the control columns by dragging them.
|
31
|
+
#
|
32
|
+
# - {Wx::HD_ALLOW_HIDE}: If this style is specified, the control shows a popup menu allowing the user to change the columns visibility on right mouse click. Notice that the program can always hide or show the columns, this style only affects the users capability to do it.
|
33
|
+
#
|
34
|
+
# - {Wx::HD_BITMAP_ON_RIGHT}: The column image, if any, will be shown on the right side if this style is used. Note that this style is only implemented in wxMSW currently and doesn't do anything under the other platforms. It is available since wxWidgets 3.1.1.
|
35
|
+
#
|
36
|
+
# - {Wx::HD_DEFAULT_STYLE}: Symbolic name for the default control style, currently equal to {Wx::HD_ALLOW_REORDER}.
|
37
|
+
#
|
38
|
+
# === Events emitted by this class
|
39
|
+
#
|
40
|
+
# The following event-handler methods redirect the events to member method or handler blocks for {Wx::HeaderCtrlEvent} events.
|
41
|
+
# Event handler methods for events emitted by this class:
|
42
|
+
#
|
43
|
+
# - {Wx::EvtHandler#evt_header_click}(id, meth = nil, &block): A column heading was clicked.
|
44
|
+
#
|
45
|
+
# - {Wx::EvtHandler#evt_header_right_click}(id, meth = nil, &block): A column heading was right clicked.
|
46
|
+
#
|
47
|
+
# - {Wx::EvtHandler#evt_header_middle_click}(id, meth = nil, &block): A column heading was clicked with the middle mouse button.
|
48
|
+
#
|
49
|
+
# - {Wx::EvtHandler#evt_header_dclick}(id, meth = nil, &block): A column heading was double clicked.
|
50
|
+
#
|
51
|
+
# - {Wx::EvtHandler#evt_header_right_dclick}(id, meth = nil, &block): A column heading was right double clicked.
|
52
|
+
#
|
53
|
+
# - {Wx::EvtHandler#evt_header_middle_dclick}(id, meth = nil, &block): A column heading was double clicked with the middle mouse button.
|
54
|
+
#
|
55
|
+
# - {Wx::EvtHandler#evt_header_separator_dclick}(id, meth = nil, &block): Separator to the right of the specified column was double clicked (this action is commonly used to resize the column to fit its contents width and the control provides {Wx::HeaderCtrl#update_column_width_to_fit} method to make implementing this easier).
|
56
|
+
#
|
57
|
+
# - {Wx::EvtHandler#evt_header_begin_resize}(id, meth = nil, &block): The user started to drag the separator to the right of the column with the specified index (this can only happen for the columns for which {Wx::HeaderColumn#is_resizeable} returns true). The event can be vetoed to prevent the column from being resized. If it isn't, the resizing and end resize (or dragging cancelled) events will be generated later.
|
58
|
+
#
|
59
|
+
# - {Wx::EvtHandler#evt_header_resizing}(id, meth = nil, &block): The user is dragging the column with the specified index resizing it and its current width is {Wx::HeaderCtrlEvent#get_width}. The event can be vetoed to stop the dragging operation completely at any time.
|
60
|
+
#
|
61
|
+
# - {Wx::EvtHandler#evt_header_end_resize}(id, meth = nil, &block): The user stopped dragging the column by releasing the mouse. The column should normally be resized to the value of {Wx::HeaderCtrlEvent#get_width}.
|
62
|
+
#
|
63
|
+
# - {Wx::EvtHandler#evt_header_begin_reorder}(id, meth = nil, &block): The user started to drag the column with the specified index (this can only happen for the controls with {Wx::HD_ALLOW_REORDER} style). This event can be vetoed to prevent the column from being reordered, otherwise the end reorder message will be generated later.
|
64
|
+
#
|
65
|
+
# - {Wx::EvtHandler#evt_header_end_reorder}(id, meth = nil, &block): The user dropped the column in its new location. The event can be vetoed to prevent the column from being placed at the new position or handled to update the display of the data in the associated control to match the new column location (available from {Wx::HeaderCtrlEvent#get_new_order}).
|
66
|
+
#
|
67
|
+
# - {Wx::EvtHandler#evt_header_dragging_cancelled}(id, meth = nil, &block): The resizing or reordering operation currently in progress was cancelled. This can happen if the user pressed Esc key while dragging the mouse or the mouse capture was lost for some other reason. You only need to handle this event if your application entered into some modal mode when resizing or reordering began, in which case it should handle this event in addition to the matching end resizing or reordering ones.
|
68
|
+
#
|
69
|
+
# ===
|
70
|
+
#
|
71
|
+
# Category: {Wx::Controls}
|
72
|
+
# @see Wx::GRID::Grid
|
73
|
+
# @see Wx::ListCtrl
|
74
|
+
# @see Wx::DataViewCtrl
|
75
|
+
#
|
76
|
+
#
|
77
|
+
class HeaderCtrl < Control
|
78
|
+
|
79
|
+
# @overload initialize()
|
80
|
+
# Default constructor not creating the underlying window.
|
81
|
+
# You must use {Wx::HeaderCtrl#create} after creating the object using this constructor.
|
82
|
+
# @return [Wx::HeaderCtrl]
|
83
|
+
# @overload initialize(parent, winid=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::HD_DEFAULT_STYLE, name=Wx::HeaderCtrlNameStr)
|
84
|
+
# Constructor creating the window.
|
85
|
+
# Please see {Wx::HeaderCtrl#create} for the parameters documentation.
|
86
|
+
# @param parent [Wx::Window]
|
87
|
+
# @param winid [Integer]
|
88
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
89
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
90
|
+
# @param style [Integer]
|
91
|
+
# @param name [String]
|
92
|
+
# @return [Wx::HeaderCtrl]
|
93
|
+
def initialize(*args) end
|
94
|
+
|
95
|
+
# Create the header control window.
|
96
|
+
# @param parent [Wx::Window] The parent window. The header control should be typically positioned along the top edge of this window.
|
97
|
+
# @param winid [Integer] Id of the control or {Wx::StandardID::ID_ANY} if you don't care.
|
98
|
+
# @param pos [Array(Integer, Integer), Wx::Point] The initial position of the control.
|
99
|
+
# @param size [Array(Integer, Integer), Wx::Size] The initial size of the control (usually not very useful as this control will typically be resized to have the same width as the associated data display control).
|
100
|
+
# @param style [Integer] The control style, {Wx::HD_DEFAULT_STYLE} by default. Notice that the default style allows the user to reorder the columns by dragging them and you need to explicitly turn this feature off by using
|
101
|
+
# ```
|
102
|
+
# wxHD_DEFAULT_STYLE & ~wxHD_ALLOW_REORDER
|
103
|
+
# ```
|
104
|
+
# if this is undesirable.
|
105
|
+
# @param name [String] The name of the control.
|
106
|
+
# @return [Boolean]
|
107
|
+
def create(parent, winid=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::HD_DEFAULT_STYLE, name=Wx::HeaderCtrlNameStr) end
|
108
|
+
|
109
|
+
# Set the number of columns in the control.
|
110
|
+
# The control will use {Wx::HeaderCtrl#get_column} to get information about all the new columns and refresh itself, i.e. this method also has the same effect as calling {Wx::HeaderCtrl#update_column} for all columns but it should only be used if the number of columns really changed.
|
111
|
+
# @param count [Integer]
|
112
|
+
# @return [void]
|
113
|
+
def set_column_count(count) end
|
114
|
+
alias_method :column_count=, :set_column_count
|
115
|
+
|
116
|
+
# Return the number of columns in the control.
|
117
|
+
# Number of columns as previously set by {Wx::HeaderCtrl#set_column_count}.
|
118
|
+
# @see Wx::HeaderCtrl#is_empty
|
119
|
+
# @return [Integer]
|
120
|
+
def get_column_count; end
|
121
|
+
alias_method :column_count, :get_column_count
|
122
|
+
|
123
|
+
# Return whether the control has any columns.
|
124
|
+
#
|
125
|
+
# @see Wx::HeaderCtrl#get_column_count
|
126
|
+
# @return [Boolean]
|
127
|
+
def is_empty; end
|
128
|
+
alias_method :empty?, :is_empty
|
129
|
+
|
130
|
+
# Update the column with the given index.
|
131
|
+
# When the value returned by {Wx::HeaderCtrl#get_column} changes, this method must be called to notify the control about the change and update the visual display to match the new column data.
|
132
|
+
# @param idx [Integer] The column index, must be less than {Wx::HeaderCtrl#get_column_count}.
|
133
|
+
# @return [void]
|
134
|
+
def update_column(idx) end
|
135
|
+
|
136
|
+
# Change the columns display order.
|
137
|
+
# The display order defines the order in which the columns appear on the screen and does not affect the interpretation of indices by all the other class methods.
|
138
|
+
# The order array specifies the column indices corresponding to the display positions.
|
139
|
+
# @see Wx::ListCtrl#set_columns_order
|
140
|
+
# @param order [Array<Integer>] A permutation of all column indices, i.e. an array of size {Wx::HeaderCtrl#get_columns_order} containing all column indices exactly once. The n-th element of this array defines the index of the column shown at the n-th position from left (for the default left-to-right writing direction).
|
141
|
+
# @return [void]
|
142
|
+
def set_columns_order(order) end
|
143
|
+
alias_method :columns_order=, :set_columns_order
|
144
|
+
|
145
|
+
# Return the array describing the columns display order.
|
146
|
+
# For the controls without {Wx::HD_ALLOW_REORDER} style the returned array will be the same as was passed to {Wx::HeaderCtrl#set_columns_order} previously or define the default order (with n-th element being n) if it hadn't been called. But for the controls with {Wx::HD_ALLOW_REORDER} style, the columns can be also reordered by user.
|
147
|
+
# @return [Array<Integer>]
|
148
|
+
def get_columns_order; end
|
149
|
+
alias_method :columns_order, :get_columns_order
|
150
|
+
|
151
|
+
# Return the index of the column displayed at the given position.
|
152
|
+
#
|
153
|
+
# @see Wx::HeaderCtrl#get_column_pos
|
154
|
+
# @param pos [Integer] The display position, e.g. 0 for the left-most column, 1 for the next one and so on until {Wx::HeaderCtrl#get_column_count} - 1.
|
155
|
+
# @return [Integer]
|
156
|
+
def get_column_at(pos) end
|
157
|
+
alias_method :column_at, :get_column_at
|
158
|
+
|
159
|
+
# Get the position at which this column is currently displayed.
|
160
|
+
# Notice that a valid position is returned even for the hidden columns currently.
|
161
|
+
# @see Wx::HeaderCtrl#get_column_at
|
162
|
+
# @param idx [Integer] The column index, must be less than {Wx::HeaderCtrl#get_column_count}.
|
163
|
+
# @return [Integer]
|
164
|
+
def get_column_pos(idx) end
|
165
|
+
alias_method :column_pos, :get_column_pos
|
166
|
+
|
167
|
+
# Reset the columns order to the natural one.
|
168
|
+
# After calling this function, the column with index idx appears at position idx in the control.
|
169
|
+
# @return [void]
|
170
|
+
def reset_columns_order; end
|
171
|
+
|
172
|
+
# Show the popup menu allowing the user to show or hide the columns.
|
173
|
+
# This functions shows the popup menu containing all columns with check marks for the ones which are currently shown and allows the user to check or uncheck them to toggle their visibility. It is called from the default EVT_HEADER_RIGHT_CLICK handler for the controls which have {Wx::HD_ALLOW_HIDE} style. And if the column has {Wx::HD_ALLOW_REORDER} style as well, the menu also contains an item to customize the columns shown using which results in {Wx::HeaderCtrl#show_customize_dialog} being called, please see its description for more details.
|
174
|
+
# If a column was toggled, {Wx::HeaderCtrl#update_column_visibility} virtual function is called so it must be implemented for the controls with {Wx::HD_ALLOW_HIDE} style or if you call this function explicitly.
|
175
|
+
#
|
176
|
+
# true if a column was shown or hidden or false if nothing was done, e.g. because the menu was cancelled.
|
177
|
+
# @param pt [Array(Integer, Integer), Wx::Point] The position of the menu, in the header window coordinates.
|
178
|
+
# @param title [String] The title for the menu if not empty.
|
179
|
+
# @return [Boolean]
|
180
|
+
def show_columns_menu(pt, title=(())) end
|
181
|
+
|
182
|
+
# Helper function appending the checkable items corresponding to all the columns to the given menu.
|
183
|
+
# This function is used by {Wx::HeaderCtrl#show_columns_menu} but can also be used if you show your own custom columns menu and still want all the columns shown in it. It appends menu items with column labels as their text and consecutive ids starting from idColumnsBase to the menu and checks the items corresponding to the currently visible columns.
|
184
|
+
# Example of use:
|
185
|
+
# ```
|
186
|
+
# wxMenu menu;
|
187
|
+
# menu.Append(100, "Some custom command");
|
188
|
+
# menu.AppendSeparator();
|
189
|
+
# AddColumnsItems(menu, 200);
|
190
|
+
# const int rc = GetPopupMenuSelectionFromUser(menu, pt);
|
191
|
+
# if ( rc >= 200 )
|
192
|
+
# ... toggle visibility of the column rc-200 ...
|
193
|
+
# ```
|
194
|
+
# @param menu [Wx::Menu] The menu to append the items to. It may be currently empty or not.
|
195
|
+
# @param idColumnsBase [Integer] The id for the menu item corresponding to the first column, the other ones are consecutive starting from it. It should be positive.
|
196
|
+
# @return [void]
|
197
|
+
def add_columns_items(menu, idColumnsBase=0) end
|
198
|
+
|
199
|
+
# Show the column customization dialog.
|
200
|
+
# This function displays a modal dialog containing the list of all columns which the user can use to reorder them as well as show or hide individual columns.
|
201
|
+
# If the user accepts the changes done in the dialog, the virtual methods {Wx::HeaderCtrl#update_column_visibility} and {Wx::HeaderCtrl#update_columns_order} will be called so they must be overridden in the derived class if this method is ever called. Please notice that the user will be able to invoke it interactively from the header popup menu if the control has both {Wx::HD_ALLOW_HIDE} and {Wx::HD_ALLOW_REORDER} styles.
|
202
|
+
# @see Wx::RearrangeDialog
|
203
|
+
# @return [Boolean]
|
204
|
+
def show_customize_dialog; end
|
205
|
+
|
206
|
+
# @overload get_column_title_width(col)
|
207
|
+
# Returns width needed for given column's title.
|
208
|
+
# @param col [Wx::HeaderColumn]
|
209
|
+
# @return [Integer]
|
210
|
+
# @overload get_column_title_width(idx)
|
211
|
+
# Returns width needed for the column with the given index.
|
212
|
+
# This is just a convenient wrapper for the overload taking {Wx::HeaderColumn}.
|
213
|
+
# @param idx [Integer]
|
214
|
+
# @return [Integer]
|
215
|
+
def get_column_title_width(*args) end
|
216
|
+
alias_method :column_title_width, :get_column_title_width
|
217
|
+
|
218
|
+
# Helper function to manipulate the array of column indices.
|
219
|
+
# This function reshuffles the array of column indices indexed by positions (i.e. using the same convention as for {Wx::HeaderCtrl#set_columns_order}) so that the column with the given index is found at the specified position.
|
220
|
+
# @param order [Array<Integer>] Array containing the indices of columns in order of their positions.
|
221
|
+
# @param idx [Integer] The index of the column to move.
|
222
|
+
# @param pos [Integer] The new position for the column idx.
|
223
|
+
# @return [void]
|
224
|
+
def self.move_column_in_order_array(order, idx, pos) end
|
225
|
+
|
226
|
+
|
227
|
+
protected
|
228
|
+
|
229
|
+
# Method to be implemented by the derived classes to return the information for the given column.
|
230
|
+
# @param idx [Integer] The column index, between 0 and the value last passed to {Wx::HeaderCtrl#set_column_count}.
|
231
|
+
# @return [Wx::HeaderColumn]
|
232
|
+
def get_column(idx) end
|
233
|
+
alias_method :column, :get_column
|
234
|
+
|
235
|
+
# Method called when the column visibility is changed by the user.
|
236
|
+
# This method is called from {Wx::HeaderCtrl#show_columns_menu} or {Wx::HeaderCtrl#show_customize_dialog} when the user interactively hides or shows a column. A typical implementation will simply update the internally stored column state. Notice that there is no need to call {Wx::HeaderCtrl#update_column} from this method as it is already done by {Wx::HeaderCtrl} itself.
|
237
|
+
# The base class version doesn't do anything and must be overridden if this method is called.
|
238
|
+
# @param idx [Integer] The index of the column whose visibility was toggled.
|
239
|
+
# @param show [Boolean] The new visibility value, true if the column is now shown or false if it is not hidden.
|
240
|
+
# @return [void]
|
241
|
+
def update_column_visibility(idx, show) end
|
242
|
+
|
243
|
+
# Method called when the columns order is changed in the customization dialog.
|
244
|
+
# This method is only called from {Wx::HeaderCtrl#show_customize_dialog} when the user changes the order of columns. In particular it is not called if a single column changes place because the user dragged it to the new location, the EVT_HEADER_END_REORDER event handler should be used to react to this.
|
245
|
+
# A typical implementation in a derived class will update the display order of the columns in the associated control, if any. Notice that there is no need to call {Wx::HeaderCtrl#set_columns_order} from it as {Wx::HeaderCtrl} does it itself.
|
246
|
+
# The base class version doesn't do anything and must be overridden if this method is called.
|
247
|
+
# @param order [Array<Integer>] The new column order. This array uses the same convention as {Wx::HeaderCtrl#set_columns_order}.
|
248
|
+
# @return [void]
|
249
|
+
def update_columns_order(order) end
|
250
|
+
|
251
|
+
# Method which may be implemented by the derived classes to allow double clicking the column separator to resize the column to fit its contents.
|
252
|
+
# When a separator is double clicked, the default handler of EVT_HEADER_SEPARATOR_DCLICK event calls this function and refreshes the column if it returns true so to implement the resizing of the column to fit its width on header double click you need to implement this method using logic similar to this example:
|
253
|
+
# ```
|
254
|
+
# class MyHeaderColumn : public wxHeaderColumn
|
255
|
+
# {
|
256
|
+
# public:
|
257
|
+
# ...
|
258
|
+
#
|
259
|
+
# void SetWidth(int width) { m_width = width; }
|
260
|
+
# virtual int GetWidth() const { return m_width; }
|
261
|
+
#
|
262
|
+
# private:
|
263
|
+
# int m_width;
|
264
|
+
# };
|
265
|
+
#
|
266
|
+
# class MyHeaderCtrl : public wxHeaderCtrl
|
267
|
+
# {
|
268
|
+
# public:
|
269
|
+
# protected:
|
270
|
+
# virtual wxHeaderColumn& GetColumn(unsigned int idx) const
|
271
|
+
# {
|
272
|
+
# return m_cols[idx];
|
273
|
+
# }
|
274
|
+
#
|
275
|
+
# virtual bool UpdateColumnWidthToFit(unsigned int idx, int widthTitle)
|
276
|
+
# {
|
277
|
+
# int widthContents = ... compute minimal width for column idx ...
|
278
|
+
# m_cols[idx].SetWidth(wxMax(widthContents, widthTitle));
|
279
|
+
# return true;
|
280
|
+
# }
|
281
|
+
#
|
282
|
+
# wxVector<MyHeaderColumn> m_cols;
|
283
|
+
# };
|
284
|
+
# ```
|
285
|
+
#
|
286
|
+
# Base class version simply returns false.
|
287
|
+
#
|
288
|
+
# true to indicate that the column was resized, i.e. {Wx::HeaderCtrl#get_column} now returns the new width value, and so must be refreshed or false meaning that the control didn't reach to the separator double click.
|
289
|
+
# @param idx [Integer] The zero-based index of the column to update.
|
290
|
+
# @param widthTitle [Integer] Contains minimal width needed to display the column header itself and will usually be used as a starting point for the fitting width calculation.
|
291
|
+
# @return [Boolean]
|
292
|
+
def update_column_width_to_fit(idx, widthTitle) end
|
293
|
+
|
294
|
+
# Can be overridden in the derived class to update internal data structures when the number of the columns in the control changes.
|
295
|
+
# This method is called by {Wx::HeaderCtrl#set_column_count} before effectively changing the number of columns.
|
296
|
+
# The base class version does nothing but it is good practice to still call it from the overridden version in the derived class.
|
297
|
+
# @param count [Integer]
|
298
|
+
# @return [void]
|
299
|
+
def on_column_count_changing(count) end
|
300
|
+
|
301
|
+
end # HeaderCtrl
|
302
|
+
|
303
|
+
# Represents a column header in controls displaying tabular data such as {Wx::DataViewCtrl} or {Wx::GRID::Grid}.
|
304
|
+
# Notice that this is an abstract base class which is implemented (usually using the information stored in the associated control) by the different controls using {Wx::HeaderCtrl}. As the control only needs to retrieve the information about the column, this class defines only the methods for accessing the various column properties but not for changing them as the setters might not be needed at all, e.g. if the column attributes can only be changed via the methods of the main associated control (this is the case for {Wx::GRID::Grid} for example). If you do want to allow changing them directly using the column itself, you should inherit from {Wx::SettableHeaderColumn} instead of this class.
|
305
|
+
# Finally, if you don't already store the column information at all anywhere, you should use the concrete {Wx::HeaderColumnSimple} class and {Wx::HeaderCtrlSimple}.
|
306
|
+
# ===
|
307
|
+
#
|
308
|
+
# Category: {Wx::Controls}
|
309
|
+
#
|
310
|
+
#
|
311
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
312
|
+
class HeaderColumn < ::Object
|
313
|
+
|
314
|
+
# Get the text shown in the column header.
|
315
|
+
# @return [String]
|
316
|
+
def get_title; end
|
317
|
+
alias_method :title, :get_title
|
318
|
+
|
319
|
+
# This function exists only for backwards compatibility, it's recommended to override {Wx::HeaderColumn#get_bitmap_bundle} in the new code and override this one to do nothing, as it will never be called if {Wx::HeaderColumn#get_bitmap_bundle} is overridden.
|
320
|
+
# @return [Wx::Bitmap]
|
321
|
+
def get_bitmap; end
|
322
|
+
alias_method :bitmap, :get_bitmap
|
323
|
+
|
324
|
+
# Returns the bitmap in the header of the column, if any.
|
325
|
+
# If the column has no associated bitmap, empty {Wx::BitmapBundle} should be returned.
|
326
|
+
# Override this function to return the bundle containing the bitmap to show in the column header. By default delegates to {Wx::HeaderColumn#get_bitmap} but should be overridden if the bitmaps are used.
|
327
|
+
# @return [Wx::BitmapBundle]
|
328
|
+
def get_bitmap_bundle; end
|
329
|
+
alias_method :bitmap_bundle, :get_bitmap_bundle
|
330
|
+
|
331
|
+
# Returns the current width of the column.
|
332
|
+
# Width of the column in pixels, never {Wx::COL_WIDTH_DEFAULT} or {Wx::COL_WIDTH_AUTOSIZE}.
|
333
|
+
# @return [Integer]
|
334
|
+
def get_width; end
|
335
|
+
alias_method :width, :get_width
|
336
|
+
|
337
|
+
# Return the minimal column width.
|
338
|
+
# The minimal width such that the user can't resize the column to lesser size (notice that it is still possible to set the column width to smaller value from the program code). Return 0 from here to allow resizing the column to arbitrarily small size.
|
339
|
+
# @return [Integer]
|
340
|
+
def get_min_width; end
|
341
|
+
alias_method :min_width, :get_min_width
|
342
|
+
|
343
|
+
# Returns the current column alignment.
|
344
|
+
# One of {Wx::Alignment::ALIGN_CENTRE}, {Wx::Alignment::ALIGN_LEFT} or {Wx::Alignment::ALIGN_RIGHT}.
|
345
|
+
# @return [Wx::Alignment]
|
346
|
+
def get_alignment; end
|
347
|
+
alias_method :alignment, :get_alignment
|
348
|
+
|
349
|
+
# Get the column flags.
|
350
|
+
# This method retrieves all the flags at once, you can also use {Wx::HeaderColumn#has_flag} to test for any individual flag or {Wx::HeaderColumn#is_resizeable}, {Wx::HeaderColumn#is_sortable}, {Wx::HeaderColumn#is_reorderable} and {Wx::HeaderColumn#is_hidden} to test for particular flags.
|
351
|
+
# @return [Integer]
|
352
|
+
def get_flags; end
|
353
|
+
alias_method :flags, :get_flags
|
354
|
+
|
355
|
+
# Return true if the specified flag is currently set for this column.
|
356
|
+
# @param flag [Integer]
|
357
|
+
# @return [Boolean]
|
358
|
+
def has_flag(flag) end
|
359
|
+
alias_method :has_flag?, :has_flag
|
360
|
+
|
361
|
+
# Return true if the column can be resized by the user.
|
362
|
+
# Equivalent to HasFlag({Wx::COL_RESIZABLE}).
|
363
|
+
# @return [Boolean]
|
364
|
+
def is_resizeable; end
|
365
|
+
alias_method :resizeable?, :is_resizeable
|
366
|
+
|
367
|
+
# Returns true if the column can be clicked by user to sort the control contents by the field in this column.
|
368
|
+
# This corresponds to {Wx::COL_SORTABLE} flag which is off by default.
|
369
|
+
# @return [Boolean]
|
370
|
+
def is_sortable; end
|
371
|
+
alias_method :sortable?, :is_sortable
|
372
|
+
|
373
|
+
# Returns true if the column can be dragged by user to change its order.
|
374
|
+
# This corresponds to {Wx::COL_REORDERABLE} flag which is on by default.
|
375
|
+
# @return [Boolean]
|
376
|
+
def is_reorderable; end
|
377
|
+
alias_method :reorderable?, :is_reorderable
|
378
|
+
|
379
|
+
# Returns true if the column is currently hidden.
|
380
|
+
# This corresponds to {Wx::COL_HIDDEN} flag which is off by default.
|
381
|
+
# @return [Boolean]
|
382
|
+
def is_hidden; end
|
383
|
+
alias_method :hidden?, :is_hidden
|
384
|
+
|
385
|
+
# Returns true if the column is currently shown.
|
386
|
+
# This corresponds to the absence of {Wx::COL_HIDDEN} flag.
|
387
|
+
# @return [Boolean]
|
388
|
+
def is_shown; end
|
389
|
+
alias_method :shown?, :is_shown
|
390
|
+
|
391
|
+
# Returns true if the column is currently used for sorting.
|
392
|
+
# @return [Boolean]
|
393
|
+
def is_sort_key; end
|
394
|
+
alias_method :sort_key?, :is_sort_key
|
395
|
+
|
396
|
+
# Returns true, if the sort order is ascending.
|
397
|
+
# Notice that it only makes sense to call this function if the column is used for sorting at all, i.e. if {Wx::HeaderColumn#is_sort_key} returns true.
|
398
|
+
# @return [Boolean]
|
399
|
+
def is_sort_order_ascending; end
|
400
|
+
alias_method :sort_order_ascending?, :is_sort_order_ascending
|
401
|
+
|
402
|
+
end # HeaderColumn
|
403
|
+
|
404
|
+
# {Wx::HeaderCtrlSimple} is a concrete header control which can be used directly, without inheriting from it as you need to do when using {Wx::HeaderCtrl} itself.
|
405
|
+
# When using it, you need to use simple {Wx::HeaderCtrlSimple#append_column}, {Wx::HeaderCtrlSimple#insert_column} and {Wx::HeaderCtrlSimple#delete_column} methods instead of setting the number of columns with {Wx::HeaderCtrlSimple#set_column_count} and returning the information about them from the overridden {Wx::HeaderCtrlSimple#get_column}.
|
406
|
+
# ===
|
407
|
+
#
|
408
|
+
# Category: {Wx::Controls}
|
409
|
+
# @see Wx::HeaderCtrl
|
410
|
+
#
|
411
|
+
#
|
412
|
+
class HeaderCtrlSimple < HeaderCtrl
|
413
|
+
|
414
|
+
# @overload initialize()
|
415
|
+
# Default constructor not creating the underlying window.
|
416
|
+
# You must use {Wx::HeaderCtrlSimple#create} after creating the object using this constructor.
|
417
|
+
# @return [Wx::HeaderCtrlSimple]
|
418
|
+
# @overload initialize(parent, winid=Wx::StandardID::ID_ANY, pos=Wx::DEFAULT_POSITION, size=Wx::DEFAULT_SIZE, style=Wx::HD_DEFAULT_STYLE, name=Wx::HeaderCtrlNameStr)
|
419
|
+
# Constructor creating the window.
|
420
|
+
# Please see the base class {Wx::HeaderCtrl#create} method for the parameters description.
|
421
|
+
# @param parent [Wx::Window]
|
422
|
+
# @param winid [Integer]
|
423
|
+
# @param pos [Array(Integer, Integer), Wx::Point]
|
424
|
+
# @param size [Array(Integer, Integer), Wx::Size]
|
425
|
+
# @param style [Integer]
|
426
|
+
# @param name [String]
|
427
|
+
# @return [Wx::HeaderCtrlSimple]
|
428
|
+
def initialize(*args) end
|
429
|
+
|
430
|
+
# Insert the column at the given position.
|
431
|
+
#
|
432
|
+
# @see Wx::HeaderCtrlSimple#append_column
|
433
|
+
# @param col [Wx::HeaderColumnSimple] The column to insert. Notice that because of the existence of implicit conversion from {Wx::String} to {Wx::HeaderColumn} a string can be passed directly here.
|
434
|
+
# @param idx [Integer] The position of the new column, from 0 to {Wx::HeaderCtrlSimple#get_column_count}. Using {Wx::HeaderCtrlSimple#get_column_count} means to append the column to the end.
|
435
|
+
# @return [void]
|
436
|
+
def insert_column(col, idx) end
|
437
|
+
|
438
|
+
# Append the column to the end of the control.
|
439
|
+
#
|
440
|
+
# @see Wx::HeaderCtrlSimple#insert_column
|
441
|
+
# @param col [Wx::HeaderColumnSimple]
|
442
|
+
# @return [void]
|
443
|
+
def append_column(col) end
|
444
|
+
|
445
|
+
# Delete the column at the given position.
|
446
|
+
#
|
447
|
+
# @see Wx::HeaderCtrlSimple#insert_column
|
448
|
+
# @see Wx::HeaderCtrlSimple#append_column
|
449
|
+
# @param idx [Integer]
|
450
|
+
# @return [void]
|
451
|
+
def delete_column(idx) end
|
452
|
+
|
453
|
+
# Show or hide the column.
|
454
|
+
# Initially the column is shown by default or hidden if it was added with {Wx::COL_HIDDEN} flag set.
|
455
|
+
# When a column is hidden, it doesn't appear at all on the screen but its index is still taken into account when working with other columns. E.g. if there are three columns 0, 1 and 2 and the column 1 is hidden you still need to use index 2 to refer to the last visible column.
|
456
|
+
# @param idx [Integer] The index of the column to show or hide, from 0 to {Wx::HeaderCtrlSimple#get_column_count}.
|
457
|
+
# @param show [Boolean] Indicates whether the column should be shown (default) or hidden.
|
458
|
+
# @return [void]
|
459
|
+
def show_column(idx, show=true) end
|
460
|
+
|
461
|
+
# Hide the column with the given index.
|
462
|
+
# This is the same as calling
|
463
|
+
# ```
|
464
|
+
# ShowColumn(idx, false)
|
465
|
+
# ```
|
466
|
+
# .
|
467
|
+
# @param idx [Integer] The index of the column to show or hide, from 0 to {Wx::HeaderCtrlSimple#get_column_count}.
|
468
|
+
# @return [void]
|
469
|
+
def hide_column(idx) end
|
470
|
+
|
471
|
+
# Update the column sort indicator.
|
472
|
+
# The sort indicator, if shown, is typically an arrow pointing upwards or downwards depending on whether the control contents is sorted in ascending or descending order.
|
473
|
+
# @param idx [Integer] The column to set the sort indicator for. If <code>-1</code> is given, then the currently shown sort indicator will be removed.
|
474
|
+
# @param sortOrder [Boolean] If true or false show the sort indicator corresponding to ascending or descending sort order respectively.
|
475
|
+
# @return [void]
|
476
|
+
def show_sort_indicator(idx, sortOrder=true) end
|
477
|
+
|
478
|
+
# Remove the sort indicator from the column being used as sort key.
|
479
|
+
#
|
480
|
+
# @see Wx::HeaderCtrlSimple#show_sort_indicator
|
481
|
+
# @return [void]
|
482
|
+
def remove_sort_indicator; end
|
483
|
+
|
484
|
+
|
485
|
+
protected
|
486
|
+
|
487
|
+
# This function can be overridden in the classes deriving from this control instead of overriding {Wx::HeaderCtrlSimple#update_column_width_to_fit}.
|
488
|
+
# To implement automatic column resizing to fit its contents width when the column divider is double clicked, you need to simply return the fitting width for the given column idx from this method, the control will automatically use the biggest value between the one returned from here and the one needed for the display of the column title itself.
|
489
|
+
# The base class version returns -1 indicating that this function is not implemented.
|
490
|
+
# @param idx [Integer]
|
491
|
+
# @return [Integer]
|
492
|
+
def get_best_fitting_width(idx) end
|
493
|
+
alias_method :best_fitting_width, :get_best_fitting_width
|
494
|
+
|
495
|
+
end # HeaderCtrlSimple
|
496
|
+
|
497
|
+
# Adds methods to set the column attributes to {Wx::HeaderColumn}.
|
498
|
+
# This class adds setters for the column attributes defined by {Wx::HeaderColumn}. It is still an abstract base class and needs to be implemented before using it with {Wx::HeaderCtrl}.
|
499
|
+
# ===
|
500
|
+
#
|
501
|
+
# Category: {Wx::Controls}
|
502
|
+
#
|
503
|
+
#
|
504
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
505
|
+
class SettableHeaderColumn < HeaderColumn
|
506
|
+
|
507
|
+
# Set the text to display in the column header.
|
508
|
+
# @param title [String]
|
509
|
+
# @return [void]
|
510
|
+
def set_title(title) end
|
511
|
+
alias_method :title=, :set_title
|
512
|
+
|
513
|
+
# Set the bitmap to be displayed in the column header.
|
514
|
+
# Notice that the bitmaps displayed in different columns of the same control must all be of the same size.
|
515
|
+
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
516
|
+
# @return [void]
|
517
|
+
def set_bitmap(bitmap) end
|
518
|
+
alias_method :bitmap=, :set_bitmap
|
519
|
+
|
520
|
+
# Set the column width.
|
521
|
+
# @param width [Integer] The column width in pixels or the special {Wx::COL_WIDTH_DEFAULT} (meaning to use default width) or {Wx::COL_WIDTH_AUTOSIZE} (size to fit the content) value.
|
522
|
+
# @return [void]
|
523
|
+
def set_width(width) end
|
524
|
+
alias_method :width=, :set_width
|
525
|
+
|
526
|
+
# Set the minimal column width.
|
527
|
+
# This method can be used with resizable columns (i.e. those for which {Wx::COL_RESIZABLE} flag is set in {Wx::SettableHeaderColumn#get_flags} or, alternatively, {Wx::SettableHeaderColumn#is_resizeable} returns true) to prevent the user from making them narrower than the given width.
|
528
|
+
# @param minWidth [Integer] The minimal column width in pixels, may be 0 to remove any previously set restrictions.
|
529
|
+
# @return [void]
|
530
|
+
def set_min_width(minWidth) end
|
531
|
+
alias_method :min_width=, :set_min_width
|
532
|
+
|
533
|
+
# Set the alignment of the column header.
|
534
|
+
# @param align [Wx::Alignment] The text alignment in horizontal direction only or {Wx::Alignment::ALIGN_NOT} to use the default alignment, The possible values here are {Wx::Alignment::ALIGN_CENTRE}, {Wx::Alignment::ALIGN_LEFT} or {Wx::Alignment::ALIGN_RIGHT} with {Wx::Alignment::ALIGN_CENTRE_HORIZONTAL} being also supported as synonym for {Wx::Alignment::ALIGN_CENTRE} for consistency (but notice that {Wx::SettableHeaderColumn#get_alignment} never returns it).
|
535
|
+
# @return [void]
|
536
|
+
def set_alignment(align) end
|
537
|
+
alias_method :alignment=, :set_alignment
|
538
|
+
|
539
|
+
# Set the column flags.
|
540
|
+
# This method allows setting all flags at once, see also generic {Wx::SettableHeaderColumn#change_flag}, {Wx::SettableHeaderColumn#set_flag}, {Wx::SettableHeaderColumn#clear_flag} and {Wx::SettableHeaderColumn#toggle_flag} methods below as well as specific {Wx::SettableHeaderColumn#set_resizeable}, {Wx::SettableHeaderColumn#set_sortable}, {Wx::SettableHeaderColumn#set_reorderable} and {Wx::SettableHeaderColumn#set_hidden} ones.
|
541
|
+
# @param flags [Integer] Combination of {Wx::COL_RESIZABLE}, {Wx::COL_SORTABLE}, {Wx::COL_REORDERABLE} and {Wx::COL_HIDDEN} bit flags.
|
542
|
+
# @return [void]
|
543
|
+
def set_flags(flags) end
|
544
|
+
alias_method :flags=, :set_flags
|
545
|
+
|
546
|
+
# Set or clear the given flag.
|
547
|
+
#
|
548
|
+
# @see Wx::SettableHeaderColumn#set_flags
|
549
|
+
# @param flag [Integer] The flag to set or clear.
|
550
|
+
# @param set [Boolean] If true, set the flag, i.e. equivalent to calling {Wx::SettableHeaderColumn#set_flag}, otherwise clear it, as {Wx::SettableHeaderColumn#clear_flag}.
|
551
|
+
# @return [void]
|
552
|
+
def change_flag(flag, set) end
|
553
|
+
|
554
|
+
# Set the specified flag for the column.
|
555
|
+
#
|
556
|
+
# @see Wx::SettableHeaderColumn#set_flags
|
557
|
+
# @param flag [Integer]
|
558
|
+
# @return [void]
|
559
|
+
def set_flag(flag) end
|
560
|
+
alias_method :flag=, :set_flag
|
561
|
+
|
562
|
+
# Clear the specified flag for the column.
|
563
|
+
#
|
564
|
+
# @see Wx::SettableHeaderColumn#set_flags
|
565
|
+
# @param flag [Integer]
|
566
|
+
# @return [void]
|
567
|
+
def clear_flag(flag) end
|
568
|
+
|
569
|
+
# Toggle the specified flag for the column.
|
570
|
+
# If the flag is currently set, equivalent to {Wx::SettableHeaderColumn#clear_flag}, otherwise to {Wx::SettableHeaderColumn#set_flag}.
|
571
|
+
# @see Wx::SettableHeaderColumn#set_flags
|
572
|
+
# @param flag [Integer]
|
573
|
+
# @return [void]
|
574
|
+
def toggle_flag(flag) end
|
575
|
+
|
576
|
+
# Call this to enable or disable interactive resizing of the column by the user.
|
577
|
+
# By default, the columns are resizable.
|
578
|
+
# Equivalent to ChangeFlag({Wx::COL_RESIZABLE}, resizable).
|
579
|
+
# @param resizable [Boolean]
|
580
|
+
# @return [void]
|
581
|
+
def set_resizeable(resizable) end
|
582
|
+
alias_method :resizeable=, :set_resizeable
|
583
|
+
|
584
|
+
# Allow clicking the column to sort the control contents by the field in this column.
|
585
|
+
# By default, the columns are not sortable so you need to explicitly call this function to allow sorting by the field corresponding to this column.
|
586
|
+
# Equivalent to ChangeFlag({Wx::COL_SORTABLE}, sortable).
|
587
|
+
# @param sortable [Boolean]
|
588
|
+
# @return [void]
|
589
|
+
def set_sortable(sortable) end
|
590
|
+
alias_method :sortable=, :set_sortable
|
591
|
+
|
592
|
+
# Allow changing the column order by dragging it.
|
593
|
+
# Equivalent to ChangeFlag({Wx::COL_REORDERABLE}, reorderable).
|
594
|
+
# @param reorderable [Boolean]
|
595
|
+
# @return [void]
|
596
|
+
def set_reorderable(reorderable) end
|
597
|
+
alias_method :reorderable=, :set_reorderable
|
598
|
+
|
599
|
+
# Hide or show the column.
|
600
|
+
# By default all columns are shown but some of them can be completely hidden from view by calling this function.
|
601
|
+
# Equivalent to ChangeFlag({Wx::COL_HIDDEN}, hidden).
|
602
|
+
# @param hidden [Boolean]
|
603
|
+
# @return [void]
|
604
|
+
def set_hidden(hidden) end
|
605
|
+
alias_method :hidden=, :set_hidden
|
606
|
+
|
607
|
+
# Don't use this column for sorting.
|
608
|
+
# This is the reverse of {Wx::SettableHeaderColumn#set_sort_order} and is called to indicate that this column is not used for sorting any longer.
|
609
|
+
# @return [void]
|
610
|
+
def unset_as_sort_key; end
|
611
|
+
|
612
|
+
# Sets this column as the sort key for the associated control.
|
613
|
+
# This function indicates that this column is currently used for sorting the control and also sets the sorting direction. Notice that actual sorting is only done in the control associated with the header, this function doesn't do any sorting on its own.
|
614
|
+
# Don't confuse this function with {Wx::SettableHeaderColumn#set_sortable} which should be used to indicate that the column may be used for sorting while this one is used to indicate that it currently is used for sorting. Of course, {Wx::SettableHeaderColumn#set_sort_order} can be only called for sortable columns.
|
615
|
+
# @param ascending [Boolean] If true, sort in ascending order, otherwise in descending order.
|
616
|
+
# @return [void]
|
617
|
+
def set_sort_order(ascending) end
|
618
|
+
alias_method :sort_order=, :set_sort_order
|
619
|
+
|
620
|
+
# Inverses the sort order.
|
621
|
+
# This function is typically called when the user clicks on a column used for sorting to change sort order from ascending to descending or vice versa.
|
622
|
+
# @see Wx::SettableHeaderColumn#set_sort_order
|
623
|
+
# @see Wx::SettableHeaderColumn#is_sort_order_ascending
|
624
|
+
# @return [void]
|
625
|
+
def toggle_sort_order; end
|
626
|
+
|
627
|
+
end # SettableHeaderColumn
|
628
|
+
|
629
|
+
# Simple container for the information about the column.
|
630
|
+
# This is a concrete class implementing all {Wx::SettableHeaderColumn} class methods in a trivial way, i.e. by just storing the information in the object itself. It is used by and with {Wx::HeaderCtrlSimple}, e.g.
|
631
|
+
# ```
|
632
|
+
# wxHeaderCtrlSimple * header = new wxHeaderCtrlSimple(...);
|
633
|
+
# wxHeaderColumnSimple col("Title");
|
634
|
+
# col.SetWidth(100);
|
635
|
+
# col.SetSortable(100);
|
636
|
+
# header->AppendColumn(col);
|
637
|
+
# ```
|
638
|
+
#
|
639
|
+
# ===
|
640
|
+
#
|
641
|
+
# Category: {Wx::Controls}
|
642
|
+
#
|
643
|
+
#
|
644
|
+
# @note This class is <b>untracked</b> and should not be derived from nor instances extended!
|
645
|
+
class HeaderColumnSimple < SettableHeaderColumn
|
646
|
+
|
647
|
+
# @overload initialize(title, width=Wx::COL_WIDTH_DEFAULT, align=Wx::Alignment::ALIGN_NOT, flags=Wx::COL_DEFAULT_FLAGS)
|
648
|
+
# Constructor for a column header.
|
649
|
+
# The first constructor creates a header showing the given text title while the second one creates one showing the specified bitmap image.
|
650
|
+
# @param title [String]
|
651
|
+
# @param width [Integer]
|
652
|
+
# @param align [Wx::Alignment]
|
653
|
+
# @param flags [Integer]
|
654
|
+
# @return [Wx::HeaderColumnSimple]
|
655
|
+
# @overload initialize(bitmap, width=Wx::COL_WIDTH_DEFAULT, align=Wx::Alignment::ALIGN_CENTER, flags=Wx::COL_DEFAULT_FLAGS)
|
656
|
+
# Constructor for a column header.
|
657
|
+
# The first constructor creates a header showing the given text title while the second one creates one showing the specified bitmap image.
|
658
|
+
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
659
|
+
# @param width [Integer]
|
660
|
+
# @param align [Wx::Alignment]
|
661
|
+
# @param flags [Integer]
|
662
|
+
# @return [Wx::HeaderColumnSimple]
|
663
|
+
def initialize(*args) end
|
664
|
+
|
665
|
+
# Trivial implementations of the base class pure virtual functions.
|
666
|
+
# @param title [String]
|
667
|
+
# @return [void]
|
668
|
+
def set_title(title) end
|
669
|
+
alias_method :title=, :set_title
|
670
|
+
|
671
|
+
# Trivial implementations of the base class pure virtual functions.
|
672
|
+
# @return [String]
|
673
|
+
def get_title; end
|
674
|
+
alias_method :title, :get_title
|
675
|
+
|
676
|
+
# Trivial implementations of the base class pure virtual functions.
|
677
|
+
# @param bitmap [Wx::BitmapBundle,Wx::Bitmap,Wx::Icon,Wx::Image]
|
678
|
+
# @return [void]
|
679
|
+
def set_bitmap(bitmap) end
|
680
|
+
alias_method :bitmap=, :set_bitmap
|
681
|
+
|
682
|
+
# Trivial implementations of the base class pure virtual functions.
|
683
|
+
# @return [Wx::Bitmap]
|
684
|
+
def get_bitmap; end
|
685
|
+
alias_method :bitmap, :get_bitmap
|
686
|
+
|
687
|
+
# Trivial implementations of the base class pure virtual functions.
|
688
|
+
# @return [Wx::BitmapBundle]
|
689
|
+
def get_bitmap_bundle; end
|
690
|
+
alias_method :bitmap_bundle, :get_bitmap_bundle
|
691
|
+
|
692
|
+
# Trivial implementations of the base class pure virtual functions.
|
693
|
+
# @param width [Integer]
|
694
|
+
# @return [void]
|
695
|
+
def set_width(width) end
|
696
|
+
alias_method :width=, :set_width
|
697
|
+
|
698
|
+
# Trivial implementations of the base class pure virtual functions.
|
699
|
+
# @return [Integer]
|
700
|
+
def get_width; end
|
701
|
+
alias_method :width, :get_width
|
702
|
+
|
703
|
+
# Trivial implementations of the base class pure virtual functions.
|
704
|
+
# @param minWidth [Integer]
|
705
|
+
# @return [void]
|
706
|
+
def set_min_width(minWidth) end
|
707
|
+
alias_method :min_width=, :set_min_width
|
708
|
+
|
709
|
+
# Trivial implementations of the base class pure virtual functions.
|
710
|
+
# @return [Integer]
|
711
|
+
def get_min_width; end
|
712
|
+
alias_method :min_width, :get_min_width
|
713
|
+
|
714
|
+
# Trivial implementations of the base class pure virtual functions.
|
715
|
+
# @param align [Wx::Alignment]
|
716
|
+
# @return [void]
|
717
|
+
def set_alignment(align) end
|
718
|
+
alias_method :alignment=, :set_alignment
|
719
|
+
|
720
|
+
# Trivial implementations of the base class pure virtual functions.
|
721
|
+
# @return [Wx::Alignment]
|
722
|
+
def get_alignment; end
|
723
|
+
alias_method :alignment, :get_alignment
|
724
|
+
|
725
|
+
# Trivial implementations of the base class pure virtual functions.
|
726
|
+
# @param flags [Integer]
|
727
|
+
# @return [void]
|
728
|
+
def set_flags(flags) end
|
729
|
+
alias_method :flags=, :set_flags
|
730
|
+
|
731
|
+
# Trivial implementations of the base class pure virtual functions.
|
732
|
+
# @return [Integer]
|
733
|
+
def get_flags; end
|
734
|
+
alias_method :flags, :get_flags
|
735
|
+
|
736
|
+
# Trivial implementations of the base class pure virtual functions.
|
737
|
+
# @return [Boolean]
|
738
|
+
def is_sort_key; end
|
739
|
+
alias_method :sort_key?, :is_sort_key
|
740
|
+
|
741
|
+
# Trivial implementations of the base class pure virtual functions.
|
742
|
+
# @param ascending [Boolean]
|
743
|
+
# @return [void]
|
744
|
+
def set_sort_order(ascending) end
|
745
|
+
alias_method :sort_order=, :set_sort_order
|
746
|
+
|
747
|
+
# Trivial implementations of the base class pure virtual functions.
|
748
|
+
# @return [Boolean]
|
749
|
+
def is_sort_order_ascending; end
|
750
|
+
alias_method :sort_order_ascending?, :is_sort_order_ascending
|
751
|
+
|
752
|
+
end # HeaderColumnSimple
|
753
|
+
|
754
|
+
|
755
|
+
end
|